[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] Perl 'die' function?
- Subject: Re: [cobalt-users] Perl 'die' function?
- From: Kris Dahl <krislists@xxxxxxxxxxxxx>
- Date: Tue Jun 13 02:56:13 2000
on 6/13/00 10:09 AM, Mike Fritsch at mfritsch@xxxxxxxxxxxx wrote:
>
> Ive got a perl script that keeps getting an internal server. I found out it
> has to do with the 'die' function. Anyone know what could be causing the
> error message?
Well, the perl script isn't able to do something, and the people that wrote
it included some error checking in the scripts.
If you want to see what the die message is like
blah blah or die "a big painful death!";
grep and replace 'die "' with 'die "Content-type: text/html\n\n'
THis will echo the error they provided to the screen (or at least should).
That will give u a starting point to debug the perl script.
-k