On Mon, Apr 18, 2011 at 2:23 PM, Szekeres, Edward
<edward.szeke...@perkinelmer.com> wrote:
> Moving an installation from Apache 1.3 to Apache 2.0.....
>
> I am trying to move an existing installation of a PERL code base (of
> which I am not the original author) to Apache 2.0 to help address some
> security concerns.  For the most part I have found Apache2 equivalents
> for most of the modules but have the following which I cannot seem to
> find compatible equivalents for.
>
> use Apache::AuthDBI

Apache::DBI is mp2 friendly, so it should be a drop in replacement.

> use Apache::Constants

See http://perl.apache.org/docs/2.0/api/Apache2/Const.html

 use Apache2::Const -compile => qw(FORBIDDEN OK);


> use Apache::Registry

http://perl.apache.org/docs/2.0/api/index.html

Take a look at ModPerl::Registry.


> and a reference to
>
> use Apache;

Here's a good link to read through for general migration:

http://perl.apache.org/docs/2.0/user/porting/compat.html



> Are there suggestions for replacements that would contain the same
> functionality.  I have not at this point found all specific procedural
> calls for these.
>
>
> Edward
>

Reply via email to