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(\%ENV);
its dumping out what appears to be a complete enviroment..
what gives, shouldnt this be empty?
there are some other Apache::Registry scripts which havent been
re-written to not use CGI.pm anymore, is it possible that 'use'ing
CGI.pm;' is forcing this to be turned back on?
-confused
--