Thank you for the information, it just stinks that Redhat would use something that old in their latest OS offering because I'd rather not manually build it
IDK if this is the proper place to ask this question but here goes. Here is the contents of my mod_perl.pl file, what else would need to be upgraded... use ModPerl::Util (); #for CORE::GLOBAL::exit use Apache::RequestRec (); use Apache::RequestIO (); use Apache::RequestUtil (); use Apache::Server (); use Apache::ServerUtil (); use Apache::Connection (); use Apache::Log (); use APR::Table (); use ModPerl::Registry (); use Apache::Const -compile => ':common'; use APR::Const -compile => ':common'; use GatorLink::ModAuth2 (); -----Original Message----- From: Perrin Harkins [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 06, 2006 2:22 PM To: Reese,Richard Stephen Cc: modperl@perl.apache.org Subject: Re: Apache::Server not included in mod_perl-1.99_16-4 On Tue, 2006-06-06 at 13:51 -0400, Reese,Richard Stephen wrote: > The issue is mod_perl-1.99_16-4 for RHEL4 doesn't seem to have the > Apache/Server.pm file that mod_perl-1.99_09-10.ent includes in RHEL3, > has there been a replacement or is Apache/Server.pm going to be demoted? That has been replaced by Apache2::ServerRec. You really shouldn't use anything in the 1.99* series. That's over two years old, and there have been many fixes since then. - Perrin