in reply to $ENV{'REMOTE_USER'}
Anyway, what about using CGI.pm?<Limit GET POST> Require valid-user </Limit>
If you are in a mod_perl environment, then it's a bit different:my $cgi = CGI->new(); my $remote_user = $cgi->remote_user();
I think CGI.pm really digs around to get any required dirt on what REMOTE_USER might be. It's worth a shot.my $r = Apache->request(); my $remote_user = $r->connection->user();
|
|---|