On Wed, 4 Apr 2001, Ken Williams wrote:

> [EMAIL PROTECTED] (Aaron Johnson) wrote:
> >In "the guide" it is recommended that a sub in the startup.pl file:
> >sub UNIVERSAL::AUTOLOAD {
> >               my $class = shift;
> >               warn "$class can't \$UNIVERSAL::AUTOLOAD!\n";
> >             }
>
> You'll get more useful information if you get rid of the backslash:
>
>   sub UNIVERSAL::AUTOLOAD {
>                 my $class = shift;
>                 warn "$class can't $UNIVERSAL::AUTOLOAD!\n";
>               }
>
> Stas - this should be changed in the guide, on the
> 'All_RAM_Consumed.html' page.

fixed. thanks!

> My guess at your problem - you haven't pre-loaded all necessary modules
> in your startup files (httpd.conf and startup.pl).  The code is
> disappearing when the children die and are re-spawned.
>
>
>   -------------------                            -------------------
>   Ken Williams                             Last Bastion of Euclidity
>   [EMAIL PROTECTED]                            The Math Forum
>



_____________________________________________________________________
Stas Bekman              JAm_pH     --   Just Another mod_perl Hacker
http://stason.org/       mod_perl Guide  http://perl.apache.org/guide
mailto:[EMAIL PROTECTED]   http://apachetoday.com http://logilune.com/
http://singlesheaven.com http://perl.apache.org http://perlmonth.com/


Reply via email to