Re: Losing ENV variables

2005-09-08 Thread Arun Pandey
How about setting it up in your apache startup file (or your apache conf file) ? something like PerlSetEnv myenv value so that all your child instances start up with the env variable already set -Arun - Original Message - From: "Anthony Gardner" <[EMAIL PROTECTED]> To: Sent: Wednesday,

Re: multiple developers on one Sever

2004-12-21 Thread Arun pandey
I guess the problem might be with your PerlHandler, coz Apache::Registry, caches all scripts, as a result certain global values will remain persistent. In such a case you might want to use Apache::PerlRun instead , which mimics mod_cgi by flushing the namespace at the every start of request. Th