Re: Is there something wrong with the combination of cdbi 0.96 and Apache 1.xx?

[prev] [thread] [next] [Date index for 2005/02/14]

From: Perrin Harkins
Subject: Re: Is there something wrong with the combination of cdbi 0.96 and Apache 1.xx?
Date: 20:27 on 14 Feb 2005
On Mon, 2005-02-14 at 07:23 -0800, Alexander K wrote:
> PerlModule Domain::DBI

Don't use PerlModule.  Pull in a startup.pl file instead and say "use
Domain::DBI" in there.  Alternately, do this in your httpd.conf:

<Perl>
  use Domain::DBI;
</Perl>

The problem is that PerlModule is trying to load this module again when
apache restarts (it starts twice when you start it, as the docs
explain).

- Perrin

Re: Is there something wrong with the combination of cdbi 0.96 and Apache 1.xx?
Perrin Harkins 20:27 on 14 Feb 2005

Generated at 10:23 on 16 Feb 2005 by mariachi v0.52