June 13, 200521 yr I have a file index.pl in cgi-bin folder, and it works fine on the terminal. But when I execute it on the web browser, I got the Internal Server Error. I checked the error_log file, and it said: Premature end of script header: index.pl.Can anyone help me solve this issue?
June 19, 200521 yr Author Can anyone help?When I type perl index.pl on the terminal, it prints out the output. But when I executes it via web browser, I got the 500 Internal Server Error .
June 19, 200521 yr Try setting output. Place this in code before you output any HTML or it will try to write to STDOUT.print "Content-type: text/html\n\n"; Edited June 19, 200521 yr by dman
Create an account or sign in to comment