Thanks -- that should work.
Now, I'm having more problems.
I would like to call a CGI script, and have %udat be available to it. I
thought the way to do that was:
Embperl::Req::SetupSession($req_rec);
Execute({subreq => '/cgi-perl/env_test.pl?param1=...¶m2=...'});
and then in thescript.pl I wou
> ---
> /usr/local/apache2/cgi-perl/warreng/header_test.pl:
>
> #!/usr/bin/perl
> print 'allen';
Should be
print OUT 'allen' ;
Or you have to put a
select(OUT) ;
At the top of your script.
>
> Finally, I added the line:
>
> select((select(STDOUT), $| = 1)[0]);
>
> in h