On Tue, Jul 1, 2008 at 10:08 AM, Tobias Kremer <[EMAIL PROTECTED]> wrote: > On server start: > ---------------- > 20097 Apache::DBI skipping connection during server startup, read the docu !! > 20097 Apache::DBI push PerlCleanupHandler > 20097 Apache::DBI need ping: yes > 20097 Apache::DBI new connect to 'foo:bar...' > 20097 Apache::DBI disconnect (overloaded)
That looks like two different connect attempts. The line following the "skipping" part is a return, and then it must come back in later. How are you loading this? With a PerlModule call? Can you try loading it from a Perl section like this? <Perl> use MyModule; </Perl> - Perrin