> 
> Gerald Richter wrote:
> >>Version of embperl is 2.0.0, mod_perl 2.0.1, apache 2.0.54 (prefork 
> >>mpm only), perl 5.8.4.
> >>
> >>Any ideas ?
> >>
> > 
> > 
> > How does your httpd.conf look like?
> > 
> > Did you load the C part with LoadModule and the Perl part (with 
> > PerlModule or use) both on startup?
> 
> using PerlModule seems to have fixed the problem. I'm using 
> an handler written by me and it has a "use Embperl" on top:
> ----
> package myHandler;
> 
> use Apache2;
> use Embperl;
> ----
> 
> Now with "PerlModule" in httpd.conf it's working ok.
> 

The PerlModule is necessary because of the way Apache's memory management
and module loading work

Also it's takes up less memory, than loading Embperl in every child.

Gerald


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to