sun's longitude:241 41 3.40 
· 자유게시판 · 묻고답하기 · 알파문서 · RPMS list
· 사용자문서 · 팁/FAQ모음 · 리눅스Links · 자료실
· 서버정보 · 운영자 · Books/FAQ · FreeBSD
/board/read.php:소스보기  

질문과 답변 게시판입니다.

현재 실시간으로 이곳 서버의 설정파일(몇개)를 보여주고 있습니다.
서버의 설정내용에 관한 질문은 먼저 이곳 서버의 설정내용을 참고하시길 바랍니다.

[*** 쓰기 금지단어 패턴 ***]
글 본문 중간에 업로드할 이미지를 추가하는 방법 : @@이미지이름@@
ex) @@foo.gif@@
1722 번 글의 답장글: Re: Re: Re: 좀 도와주세요....ㅜ.ㅜ
글쓴이: 산이 [홈페이지] 글쓴날: 2003년 10월 20일 00:50:13 월(새벽) 조회: 759

[리눅스초보]님이
 남기신 글:

>더 어려워요....ㅜ.ㅜ

>제가 좀 대책없는 초보라....ㅜ.ㅜ

>DSO 가 뭔가요?? 그리고 수정하면 어떤걸 수정 해야
하나요...ㅜ.ㅜ
>

php.ini 파일을 찾아서

short_open_tag = On

으로 설정하고 아파치를 다시 가동해 보세요.

이걸로 해결되지 않는다면 아마 PHP 설치가 안되어 있는것
같습니다.

# httpd -l

의 결과와

모듈디렉토리는
 설치한 환경마다 다르기 때문에
직접찾아봐야 합니다.

# find /usr -name 'libphp4.so'

의 결과를 포스팅해 주세요.


>
>[산이]님이 남기신 글:
>
>>
>>[리눅스초보]님이
 남기신 글:
>>
>>>-----------------------------------------
>>>답변자가 기본적으로 참고할 내용입니다.
>>>- 배포판(옵션)    : 
>>>- 커널버전(옵션)
  : 
>>>- 데몬버전(예:apache
 1.3.27) : 
>>>- 데몬설치유형(RPM/컴파일/기타)
 : 
>>>-----------------------------------------
>>>리눅스 서버를 구축해볼까 해서 래드햇 9.0 을 설치하고
이것저것 셋팅을 했습니다. 그런데 잘 되다가 httpd.conf 파일을
잠깐 만졌는데 홈페이지접속할때
 다운 받아라고 계속 나오네요. 계정 가기고 있는 사람들
홈페이지도 마찬가지로 다운 받아라고 하네요.
>>>밑에 보여 드리는 것이 제가 수정한 부분들입니다. 어케
고쳤는지도 모르겠어요...ㅡ.ㅡ
 
>>>고수님들 명석한 한수 부탁 드립니다.
>>>
>>
>>index.html 파일을 만들어서 테스트해 보세요.
>>
>>그리고 PHP 파일이라면 PHP 를 아파치 모듈형태로(DSO)
 설치하고
>>httpd.conf 와 php.ini 파일을 약간 수정해줘야 합니다.
>>
>>
>>
>>>------ httpd.conf 의 수정한 부분입니다.. -------
>>># AddType allows you to add to or override the MIME configuration
>>># file mime.types for specific file types.
>>>#
>>>
>>>AddType application/x-httpd-php .php
>>>AddType application/x-httpd-php3 .php3
>>>AddType application/x-httpd-php-source .php .html .htm 
>>>AddType application/x-tar .tgz
>>>
>>>#
>>># AddHandler allows you to map certain file extensions to
"handlers":
>>># actions unrelated to filetype. These can be either built into the
server
>>># or added with the Action directive (see below)
>>>#
>>># To use CGI scripts outside of ScriptAliased directories:
>>># (You will also need to add "ExecCGI" to the "Options"
directive.)
>>>#
>>>AddHandler cgi-script .cgi
>>>
>>>
>>>
>>>------named.conf--------
>>>// generated by named-bootconf.pl
>>>
>>>options {
>>>        directory "/var/named";
>>>        /*
>>>         * If there is a firewall between you and nameservers you
want
>>>         * to talk to, you might need to uncomment the query-source
>>>         * directive below.  Previous versions of BIND always asked
>>>         * questions using port 53, but BIND 8.1 uses an unprivileged
>>>         * port by default.
>>>         */
>>>        // query-source address * port 53;
>>>};
>>>
>>>// 
>>>// a caching only nameserver config
>>>// 
>>>controls {
>>>        inet 127.0.0.1 allow { localhost; } keys { rndckey; };
>>>};
>>>zone "." IN {
>>>        type hint;
>>>        file "named.ca";
>>>};
>>>
>>>zone "localhost" IN {
>>>        type master;
>>>        file "localhost.zone";
>>>        allow-update { none; };
>>>};
>>>
>>>zone "0.0.127.in-addr.arpa" IN {
>>>        type master;
>>>        file "named.local";
>>>        allow-update { none; };
>>>};
>>>zone "nyang.pe.kr" IN {
>>>        type master;
>>>        file "nyang.zone";
>>>        allow-update { none; };
>>>};
>>>zone "71.66.220.in-addr.arpa" {
>>>        type master;
>>>        file "nyang.rev";
>>>        allow-update { none; };
>>>};
>>>
>>>include "/etc/rndc.key";
>>>
>>>
>>>---------nyang.zone--------
>>>$TTL        86400
>>>@                        IN SOA        ns.nyang.pe.kr. root.nyang.pe.kr.
(
>>>                                        42                ; serial (d.
adams)
>>>                                        3H                ; refresh
>>>                                        15M                ; retry
>>>                                        1W                ; expiry
>>>                                        1D )                ; minimum
>>>
>>>                        IN NS                ns.nyang.pe.kr.
>>>                        IN A                220.66.71.64
>>>                        IN MX 10        nyang.pe.kr.
>>>
>>>ns                        IN A                220.66.71.64
>>>www                        IN A                220.66.71.64
>>>mail                        IN MX                220.66.71.64
>>>roen                        IN A                220.66.71.64
>>>*                        IN A                 220.66.71.64 
>>
>>======================================== 
>
>======================================== 

========================================

 
이전글 : Re: Re: 좀 도와주세요....ㅜ.ㅜ
다음글 : Re: Re: Re: Re: 좀 도와주세요....ㅜ.ㅜ  
 from 61.254.75.40
JS(Redhands)Board 0.4 +@

Re: Re: 좀 도와주세요....ㅜ.ㅜ Re: Re: Re: Re: 좀 도와주세요....ㅜ.ㅜ
인쇄용 


apache lighttpd linuxchannel.net 
Copyright 1997-2024. linuxchannel.net. All rights reserved.

Page loading: 0.01(server) + (network) + (browser) seconds