ask 02/03/28 00:38:43
Modified: . mod_perl_traps.pod
Log:
add another trap; refer to Apache::Reload
Revision Changes Path
1.16 +8 -4 modperl/mod_perl_traps.pod
Index: mod_perl_traps.pod
===================================================================
RCS file: /home/cvs/modperl/mod_perl_traps.pod,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- mod_perl_traps.pod 2 Jan 2002 09:41:23 -0000 1.15
+++ mod_perl_traps.pod 28 Mar 2002 08:38:43 -0000 1.16
@@ -104,8 +104,8 @@
=item *
Files pulled in via C<use> or C<require> statements are not
-automatically reloaded when changed on disk. See the Apache::StatINC
-module to add this functionality.
+automatically reloaded when changed on disk. See the Apache::StatINC
+or the Apache::Reload module to add this functionality.
=item Undefined subroutines
@@ -145,6 +145,9 @@
Test::some_function();
+=item Undefined subroutine &Foo::Bar::handler called at PerlHandler subroutine
`Foo::Bar' line 1.
+
+You mistyped the module name in the 'package' line in your module.
=item "Use of uninitialized value"
@@ -365,6 +368,7 @@
Doug MacEachern, with contributions from
Jens Heunemann E<lt>[EMAIL PROTECTED]<gt>,
David Landgren E<lt>[EMAIL PROTECTED]<gt>,
-Mark Mills E<lt>[EMAIL PROTECTED]<gt> and
-Randal Schwartz E<lt>[EMAIL PROTECTED]<gt>
+Mark Mills E<lt>[EMAIL PROTECTED]<gt>,
+Randal Schwartz E<lt>[EMAIL PROTECTED]<gt> and
+Ask Bjoern Hansen E<lt>[EMAIL PROTECTED]<gt>