Re: Apache::DBI How tro tell if enabled

2005-09-30 Thread Martin Moss
:-) That seems to be the crux of it... It is being loaded before DBI, however the escalating number of DB connections we're observing tends to disagree. I think someone has added a LoadModule directive somewhere in the wrong place and that module has a call to DBI.. I've managed to confirm Apache::

Re: Apache::DBI How tro tell if enabled

2005-09-29 Thread Philip M. Gollucci
my startup.pl looks like this: ## CORE PERL Modules use strict; use warnings FATAL => 'all'; use Carp (); ## Core MP2 Modules use mod_perl2; use ModPerl::MethodLookup (); ModPerl::MethodLookup::preload_all_modules(); ## MP2 Extras use Apache2::PerlSections (); $Apache2::PerlSections::Save = 1;

Re: Apache::DBI How tro tell if enabled

2005-09-29 Thread Perrin Harkins
On Thu, 2005-09-29 at 17:08 +0100, Martin Moss wrote: > So I presume that having done all this, and my logfile > remains blank, then it is not working? :-) Make sure you load it before DBI (or any other module that will load DBI). - Perrin

Re: Apache::DBI How tro tell if enabled

2005-09-29 Thread Martin Moss
So I presume that having done all this, and my logfile remains blank, then it is not working? :-) --- Michael Peters <[EMAIL PROTECTED]> wrote: > > > Martin Moss wrote: > > All, > > > > I'm trying to confirm whether Apache::DBI is > running > > on a server.. I can tell if it's loaded, using >

Re: Apache::DBI How tro tell if enabled

2005-09-29 Thread Michael Peters
Martin Moss wrote: > All, > > I'm trying to confirm whether Apache::DBI is running > on a server.. I can tell if it's loaded, using > perl-status, but I can't tell if it's running > correctly - e.g. intercepting calls to > DBI->connect/disconnect... > > Can anybody give me a few pointers? >Fro

Re: Apache::DBI How tro tell if enabled

2005-09-29 Thread Philip M. Gollucci
Martin Moss wrote: All, I'm trying to confirm whether Apache::DBI is running on a server.. I can tell if it's loaded, using perl-status, but I can't tell if it's running correctly - e.g. intercepting calls to DBI->connect/disconnect... In your startup.pl Add use Apache::DBI (); $Apache::DBI::DE

Apache::DBI How tro tell if enabled

2005-09-29 Thread Martin Moss
All, I'm trying to confirm whether Apache::DBI is running on a server.. I can tell if it's loaded, using perl-status, but I can't tell if it's running correctly - e.g. intercepting calls to DBI->connect/disconnect... Can anybody give me a few pointers? Marty __