in reply to The %ENV{} hash...
From the docs:
ENVIRONMENT
Under CGI the Perl hash %ENV is magical in that it inherits environment variables from the parent process and will set them should a process spawn a child. However, with mod_perl we're in the parent process that would normally setup the common environment variables before spawning a CGI process. Therefore, mod_perl must feed these variables to %ENV directly. Normally, this does not happen until the response stage of a request when PerlHandler is called. If you wish to set variables that will be available before then, such as for a PerlAuthenHandler, you may use the PerlSetEnv configuration directive:
PerlSetEnv SomeKey SomeValueYou may also use the PerlPassEnv directive to pass an already existing environment variable to Perl's %ENV:
PerlPassEnv SomeKey
CountZero
"If you have four groups working on a compiler, you'll get a 4-pass compiler." - Conway's Law
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: The %ENV{} hash...
by s_m_b (Acolyte) on Jul 31, 2006 at 16:37 UTC |