in reply to Strange Problem
First I might suggest the CGI Help Guide. Next if you can get a command line prompt (you say you can) do a ls /path/to/your/script/cgi-bin/ Obviously you should see your script. The apache httpd.conf file maps my.domain.com/cgi-bin/ to a real directory on your server like /usr/home/your/cgi-bin/ - if this mapping is wrong your script will obviously not be found.
The error at line 115 means you have something like:
my $undef_variable; print "This will generate a undefined variable used in eq warning" if $undef_variable eq "Oops forgot to define this";
The next bit "Status 302 moved...." is the headers your script is outputing. Because you have an error message before this you will get a 500 internal server error as you are not outputting a valid header (until after this error)
cheers
tachyon
s&&rsenoyhcatreve&&&s&n.+t&"$'$`$\"$\&"&ee&&y&srve&&d&&print
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Strange Problem
by rinceWind (Monsignor) on Feb 12, 2002 at 14:10 UTC | |
by Cody Pendant (Prior) on Feb 12, 2002 at 23:19 UTC | |
by rinceWind (Monsignor) on Feb 14, 2002 at 13:17 UTC |