I'm getting an intermittent 500 server errors, which is getting more frequent the busier the server is getting.
The trouble is, the only error message I'm getting in the log is:
[error] Died at /usr/lib/perl5/5.8.1/CGI/Carp.pm line 312.
Is this configuration OK?
looks fine.
I'm using -w in all scripts and of course use strict; All variables are declared locally to each script.
What is the best way to track this kind of error down?
Don't use CGI::Carp. Instead add to your startup file:
use Carp; $SIG{__DIE__} = \&Carp::confess;
which will tell you where the error is coming from, when you will have it next time (in error_log). This way you will find which is the bad module that gives such a bad debug info on failure.
-- __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com
-- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiquette: http://perl.apache.org/maillist/email-etiquette.html