Ouch, that could get messy. Below is what I currently call in startup, by any chance does anything pop out at you? Other wise I'll start going though them one at a time. Thanks Perrin use ModPerl::MethodLookup; ModPerl::MethodLookup::preload_all_modules( ); use ModPerl::Util ( ); #for CORE::GLOBAL::exit use APR::Request (); use APR::Request::Apache2 (); use APR::Request::CGI (); use APR::Request::Cookie (); use APR::Request::Error (); use APR::Request::Hook (); use APR::Request::Param (); use APR::Request::Parser (); use APR::Table (); use Apache2::RequestRec; use Apache2::RequestIO; use Apache2::RequestUtil; use Apache2::Upload (); use Apache2::Request (); use Apache2::Cookie (); use Apache2::ServerUtil(); use Apache2::Connection(); use Apache2::Log(); use ModPerl::Registry(); use Apache2::Const -compile => ':common'; use Apache2::Const -compile => qw(OK); use Apache2::Const -compile => qw(REDIRECT); use MIME::Lite (); use MIME::Lite::HTML (); use HTML::Template (); use HTML::TagFilter (); use Data::Page (); use Data::Pageset (); use Image::Magick (); use Image::Magick::Thumbnail (); use Image::Magick::Thumbnail::Fixed ();
________________________________ From: Perrin Harkins [mailto:phark...@gmail.com] Sent: Wed 1/13/2010 5:36 PM To: cfaust-dougot Cc: modperl@perl.apache.org Subject: Re: Apache Blank Pages On Wed, Jan 13, 2010 at 5:31 PM, cfaust-dougot <cfa...@doyougot.com> wrote: > Do you mean on apache startup? I'm not calling DBI or DBD in startup.pl. Any > other module would be after the fork, wouldn't? Some modules (e.g. Class::DBI) will open a connection when you use them. If you're loading any modules at all in startup, there's a possibility that this could be the issue. - Perrin