in reply to Re: How to get environment variables into a mod_perl handler at compile-time?
in thread How to get environment variables into a mod_perl handler at compile-time?
The thing that kept me from using this is that, although I could get some particular value into the script, I couldn't get the environment variable down there. If I added
in the Apache configuration with my handler, I could addPerlSetVar ORACLE_SID production
before the set_db call and thing would basically work. But I couldn't figure out how to pull ORACLE_SID from the environment.if( $ENV{'MOD_PERL'} } ) { require 'Apache2::ServerUtil' ; my $s = Apache2::ServerUtil->new ; $ENV{'ORACLE_SID'} ||= $s->dir_config('ORACLE_SID') ; }
|
|---|