Re: How to get the SERVER_SOFTWARE string

2005-08-15 Thread Geoffrey Young
Philip M. Gollucci wrote: > Nikolay Ananiev wrote: > >> Hello, >> Is there any way to get the SERVER_SOFTWARE string in mod_perl 2? >> I tried $r->psignature, but this doesn't work if ServerSignature is >> Off in >> httpd.conf. >> >> > my $server_software = $ENV{SERVER_SOFTWARE}; Apache2::Serve

Re: How to get the SERVER_SOFTWARE string

2005-08-15 Thread Philip M. Gollucci
Nikolay Ananiev wrote: Hello, Is there any way to get the SERVER_SOFTWARE string in mod_perl 2? I tried $r->psignature, but this doesn't work if ServerSignature is Off in httpd.conf. my $server_software = $ENV{SERVER_SOFTWARE}; -- END