in reply to Re^2: Getting random "Internal Server Errors"
in thread Getting random "Internal Server Errors"
To figure out where, add this code to the top of your script
Or add thisBEGIN { $|=1; print "Content-type: text/html\n\n"; use CGI::Carp('fatalsToBrowser'); }
BEGIN { use CGI::Carp qw(carpout); open(ERROR_LOG, ">>my_error_log") or die("my_error_log: $!\n"); carpout(\*ERROR_LOG); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Getting random "Internal Server Errors"
by polki (Novice) on May 05, 2009 at 21:04 UTC | |
by Anonymous Monk on May 05, 2009 at 21:16 UTC | |
by polki (Novice) on May 05, 2009 at 21:21 UTC | |
by Anonymous Monk on May 05, 2009 at 21:40 UTC |