seems if a script fails to compile ModPerl::Registry still caches it. for example, consider the following script called test.pl:
use Foo (); ... where Foo.pm did not exist in @INC. compile fails. ModPerl::Registry tries to call the test.pl::handler() function which was never created. on subsequent request no attempt to recompile test.pl and continues to call the undefined test.pl::handler, even if one puts Foo.pm into a path in @INC so it can be found. one has to either restart the server of touch test.pl in the case for ModPerl::Registry to compile it. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
