> -Original Message-
> From: John K Sterling [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, January 02, 2001 5:52 PM
> To: JR Mayberry
> Cc: [EMAIL PROTECTED]
> Subject: Re: PerlSetupEnv Off not working
>
>
> i assume thats a typo, i think PerlSetupEnv has been
That was it, thanks..
John K Sterling wrote:
>
> i assume thats a typo, i think PerlSetupEnv has been in since '96
>
> have you seen this bug report?
>http://marc.theaimsgroup.com/?l=apache-modperl&m=95867712412668&w=2
> might have something to do with it.
>
> sterling
>
> JR Mayberry wrote
i assume thats a typo, i think PerlSetupEnv has been in since '96
have you seen this bug report?
http://marc.theaimsgroup.com/?l=apache-modperl&m=95867712412668&w=2
might have something to do with it.
sterling
JR Mayberry wrote:
> Perhaps the problem is that the page reads...
>
> PerlSetupEnv
Perhaps the problem is that the page reads...
PerlSetupEnv Off is another optimization you might consider. This
directive requires mod_perl 1.25 or later.
but I run mod_perl 1.24, but http://perl.apache.org/dist/ makes no
reference to mod_perl 1.25
?
John K Sterling wrote:
>
> check the gui
I understand that, but that is not what I am asking.
Theoretically if CGI.pm requires PerlSetupEnv, then those scripts which
use CGI.pm should stop working..
they are working just fine..
the %ENV hash is being populated as well..
yet plain as day in httpd.conf it says PerlSetupEnv Off
what I'
check the guide:
http://thingy.kcilink.com/modperlguide/performance/PerlSetupEnv_Off.html
> But %ENV population is expensive. Those who have moved to the Perl Apache API no
>longer need this extra %ENV
> population, and can gain by turning it Off. Scripts using the CGI.pm module require
>Perl
Perhaps I am a bit confused about how this should be working...but..
I have PerlSetupEnv set to Off in httpd.conf..
yet in this sample script running as an Apache::Registry script:
#!/opt/bin/perl
use Data::Dumper;
my $r = Apache->request();
$r->send_http_header('text/plain');
print Dumper(\%E