On Sat, 1 Jun 2002, Gerald Richter wrote:

> Hi,
> 
> I realized that $ENV{PATH} isn't set anymore under mod_perl 2.0.

it will only be set if you configure SetHandler perl-script, which calls 
ap_add_common_vars, which does:
    if (!(env_path = getenv("PATH"))) {
        env_path = DEFAULT_PATH;
    }
    apr_table_addn(e, "PATH", apr_pstrdup(r->pool, env_path));

then r->subprocess_env is copied to %ENV.

so unless are using the SetHandler perl-script, this is expected.



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to