[김진해]님이 남기신 글:
>[김진해]님이 남기신 글:
>
>>리눅스 6.0 에서 무료 배포되는 cgi나 php 를 이용해서
게시판이나 자료실을 설치했습니다.
>>그런데 7.1 이상버전에서는
설치가 되지 않고 에러가 납니다.
>>래드햇 9.0에서도 똑같은 현상이 발생합니다.
>>
>>소스는 www.happycgi.com 에서 무료 배포되는 것입니다.
>>리눅스 버전이 높아지면서 뭔가가 바뀐건가요?
>>
>>간단한것조차
서버에러(500), 소스랑 이미지랑 섞여서 깨져
나옵니다.
>>해결책이 있을까요?
>
>더 자세한 내용입니다.
>간단한 소스예제로 테스트 해도 안됩니다.
>소스는 다음과 같습니다.
>
>#!/usr/bin/perl
>
>print "Content-type: text/html\n\n" ;
>print "Hello, World...\n"
>
>#___end______
>
>이런 에러 메세지가 나옵니다.
>
>Server error!
>The server encountered an internal error and was unable to complete your request.
>Error message:
>Premature end of script headers: index.cgi
>If you think this is a server error, please contact the webmaster
>Error 500
>comirang.kumoh.ac.kr
>Sun Jul 6 17:13:17 2003
>Apache/2.0.40 (Red Hat Linux)
========================================
print "Hello, World...\n"
을
print "Hello, World...\n";
로 바꾸세요. 세미콜론(;)이 빠졌습니다.
|