>     $ENV{EMBPERL_SESSION_CLASSES} = "FileStore NullLocker";
>     $ENV{EMBPERL_SESSION_ARGS} =
> "Directory=/usr/www/jbrisbin/httpd/cgi-bin/tmp";
>     $ENV{EMBPERL_DEBUG} = $EMBPERL_DEBUG;
>     $ENV{EMBPERL_OPTIONS} = $EMBPERL_OPTIONS;
> };
>
> $out = "";
> @errors = [];
> my $rc = HTML::Embperl::Execute({inputfile => $ENV{PATH_TRANSLATED},
>                                  errors => \@errors,
>                                  output => \$out});
>

Execute doesn't take a look to all these environment varaibles. Either pass
your values directly to Execute (what I would recommend):

 my $rc = HTML::Embperl::Execute({inputfile => $ENV{PATH_TRANSLATED},
                                  errors => \@errors,
                                    options => $EMBPERL_OPTIONS,
                                    debug => $EMBPERL_DEBUG,
                                  output => \$out});

or use HTML::Embperl::ScanEnvirnoment to read in the environment (see docs
for more info)

Gerald

P.S. I think that will solve the other issues you mailed as well, if not let
us know

-------------------------------------------------------------
Gerald Richter    ecos electronic communication services gmbh
Internetconnect * Webserver/-design/-datenbanken * Consulting

Post:       Tulpenstrasse 5         D-55276 Dienheim b. Mainz
E-Mail:     [EMAIL PROTECTED]         Voice:    +49 6133 925151
WWW:        http://www.ecos.de      Fax:      +49 6133 925152
-------------------------------------------------------------




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

Reply via email to