"Internal Server Error (500)
The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, webmaster and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log."
Please let me know what I can do. I am trying to run guestbook script and an email this page script. Currently I have an feedback from that works using cgi/perl.
Thanks,
Paul
If so, telnet into a command line into the directory where the script is at. They try:
perl -cw yourscriptname.pl
Where yourscriptname.pl is the name of the script file. The -cw switches will do a synatx check on the script. If that comes back with no errors, just try perl yourscriptname.pl once and see what it says.
You could try putting
use CGI::Carp qw(fatalsToBrowser);
at the top of the script - this will try and send any error messages to your browser as well as to the server logs and might give you a clue to the problem.
Some other things to check: if the script writes to a file, does it have write permission for that file? Does it have write permission for the directory containing that file?