t;Rahul Garg" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Monday, July 16, 2001 11:12 AM
Subject: Re: Regarding Internal Server Error
> If it's giving an internal server error, it is more than likely that
> there
> actually *is* some problem with the script, no mat
Try sending fatals to the browser using the following:
use CGI::Carp 'fatalsToBrowser';
I've seen a few times where this wouldn't work (for some stupid server
reason) so you can also try the following:
BEGIN {
open STDERR, ">&STDOUT";
$oldfh = select STDOUT;
$|=1;
select STDERR;
$|=1;
sel
If it's giving an internal server error, it is more than likely that
there
actually *is* some problem with the script, no matter how much you
think they're can't be (I've been in the same situation many a time!)
If you've got access to the error logs, have a look at those (make sure
that everyt