in reply to Re^2: ModPerl::Registry error
in thread ModPerl::Registry error
You might want to run your script under the debugger (perl -d...), and run the script up to the line number where the error occurs (c nnn). Then you can do a stack trace (T) and also look at the variables involved (x $this; x $val; and so on).
Most likely you will find that the call to an undefined sub which triggered AUTOLOAD wasn't intended to go to this particular AUTOLOAD routine.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: ModPerl::Registry error
by danidin (Novice) on Jan 23, 2007 at 13:22 UTC |