Re: Manipulating @INC and tremendous blank page

2009-02-15 Thread Perrin Harkins
On Fri, Feb 13, 2009 at 11:30 PM, wrote: > I am using FindBin and added the FindBin::again() as recommanded > in hope to switch to ModPerl::RegistryPrefork soon. > I am using both use lib and unshift @INC but still, for some reasons, > even with ModPerl::PerlRunPrefork got some pages that could n

RE: Manipulating @INC and tremendous blank page

2009-02-13 Thread shiriru0111
Thank you, Mark & Perrin for your help! > > Is there a way to manipulate @INC without having to use a startup.pl in> > > Sure. For example, PERL5LIB. Yes, sure. Sorry,my question wasn't correctly formulated. Below is closer to what I was looking for and should have expressed. > Regarding relat

Re: Manipulating @INC and tremendous blank page

2009-02-13 Thread Perrin Harkins
On Thu, Feb 12, 2009 at 9:55 PM, wrote: > Is there a way to manipulate @INC without having to use a startup.pl in > mod_perl2??? Sure. For example, PERL5LIB. > As for now, I've created a startup.pl to manipulate @INC that is called when > the server is launched > but this has serveral draw bac

Re: Manipulating @INC and tremendous blank page

2009-02-13 Thread Mark Hedges
On Fri, 13 Feb 2009, shiriru0...@hotmail.com wrote: > - I was manipulating @INC in a BEGIN block but wasn't working. > The main app index.pl is very basic: > > use strict; > use warnings; > > use App::Core Run => 'App::Engine'; > > I was doing the manip of @INC in the App::Engine module > within