Still struggling with this sadly.
Frank, i tried what you said, but still no different.
however, when i shutdown Apache i get this:
_____________________________________________
XAMMP: Stopping Apache
[notice] Apache:DB initialized in child 32021
_____________________________________________
I would have thought that may appear at start-up, and not shut down. Is
that right?
Frank Wiles wrote:
On Thu, 14 Dec 2006 17:29:39 +0000
Alan R Williamson <[EMAIL PROTECTED]> wrote:
__ httpd.conf __________________________________
<IfModule perl_module>
PerlModule Apache::DProf
PerlModule Bundle::Apache2
</IfModule>
Echoing Perrin's last E-mail, I'm thinking maybe the:
PerlModule Bundle::Apache2
being loaded before the <Perl> section might be causing your
issue.
Try switching it to this:
<Perl>
use Apache::DB();
Apache::DB->init();
use Bundle::Apache2;
....
</Perl>