in reply to Re^4: mod_perl debugging help
in thread mod_perl debugging help

The error message I can and have shown

Where? I don't see it. I see lots of mentions of "the usual undefined subroutine" message, but no actual error message. Let's have it. I still think this is the common issue of mistakes with namespaces and modules that was described in the link I provided.

As for debugging, this is no different from any other perl debugging situation. You say you have a compile-time problem, so you need to look up the part of the perldebug man page about those, and use Apache::DB to debug it.

Replies are listed 'Best First'.
Re^6: mod_perl debugging help
by MiggyMan (Sexton) on Jun 23, 2006 at 15:41 UTC
    http://perlmonks.com/?node_id=557002

    Tis easier to look before you rant at people.
      handler() is the name of the sub that mod_perl automatically calls if you tell it to use your module as a content handler and are not using something else like Apache::Registry. Are you trying to use Apache::Registry? Do you have a handler sub in your module?
        Im not using Apache::Registry since this is mod_perl only and yes I have a handler subroutine, as I say this fault is intermittant so while 99% of the time it works perfectly the other 1% it 500's :(