it is. because SetEnv ORACLE_HOME works.
SetEnv PATH1 also works.
only SetEnv PATH doesn't work.
----extract from httpd.conf
SetEnv LD_LIBRARY_PATH /opt/ora806/lib
SetEnv ORACLE_SID DEV
SetEnv ORACLE_HOME /opt/ora806
...
SetEnv PATH /some/path # this is the last line of httpd.conf
----
!906$ httpd -l
Compiled-in modules:
http_core.c
mod_env.c
mod_log_config.c
mod_mime.c
mod_negotiation.c
mod_status.c
mod_include.c
mod_autoindex.c
mod_dir.c
mod_cgi.c
mod_asis.c
mod_imap.c
mod_actions.c
mod_userdir.c
mod_alias.c
mod_access.c
mod_auth.c
mod_so.c
mod_setenvif.c
suexec: disabled; invalid wrapper /opt/apache/bin/suexec
Main Topics
Browse All Topics





by: prakashkPosted on 2001-05-22 at 10:12:59ID: 6108638
Is mod_env being loaded? Check LoadModule lines in httpd.conf if apache is compiled as DSO
(dynamically) or check the output of 'httpd -l' if it was compiled with static loading.
Post the relevant parts of your httpd.conf (including the LoadModule lines or the output of 'httpd -l')