Eric wrote:
Since our move from a internal office machine that was not using SSL to an outside machine that is, I have not been able to get the Basic user's name.

Do you have "SSLOptions FakeBasicAuth" enabled? That would probably overwrite the normal $r->user with the name from the SSL client certificate (non-existent in your case).

my $r = Apache->request();  #
my $c = $r->connection;
my $user = $c->user();

BTW, non-deprecated and mp2-compatible version:

my $r = shift @_;
my $user = $r->user;

Reply via email to