>
> I don't know the reason but presume PerlSetEnv Variables are Available
> Only Under mod-perl,
They are available as soon as mod_perl is compiled in/loaded
> And since I had used PerlSetEnv EMBPERL_LOG in
> httpd.conf, and set Apache FilesMatch Directive i.e. only *.epl or *.pl
for
> pass
> But the below mentioned steps do not work.
> I tried in apache, httpd.conf & embpcgi.pl but It still uses
> /tmp/embperl.log as log file.
>
> tried SetEnv & PerlSetEnv ---
> tried EMPPERL_LOGFILE & EMBPERL_LOGFILE ---
> (Assuming a typo error)
> tried EMPPERL_LOG but to no vail.
>
It's a dou
>Any one know how to set the embperl Log file path
>for embpcgi.pl script.
You can add a
SetEnv EMPPERL_LOGFILE /path/to/embperl.log
or if you don't run Apache and can't set an environment variable, add it to
the top of embpcgi.pl, just like
$ENV{EMPPERL_LOGFILE} = '/path/to/embperl.log' ;
Ge