Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: The Case of the Missing .pm which isn't supposed to be there...

by chipmunk (Parson)
on Jan 25, 2002 at 07:21 UTC ( [id://141418]=note: print w/replies, xml ) Need Help??


in reply to The Case of the Missing .pm which isn't supposed to be there...

You can track down the location of the eval by setting up a die handler that prints a stack trace. For example:
$SIG{__DIE__} = sub { my @stack; my $i = 0; while(my($package, $file, $line) = caller($i++)) { push @stack, " package $package, file $file, line $line\n"; } die @_, @stack; };
Note that I have not tested this with FastCGI.

First, though, you should do a quick grep of the source for the word 'simple'. That's easier and should work fine in this case.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://141418]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (7)
As of 2024-03-28 13:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found