Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
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.

  • Comment on Re: The Case of the Missing .pm which isn't supposed to be there...
  • Download Code

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 chilling in the Monastery: (3)
As of 2025-07-17 21:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.