On Tue, 10 Oct 2000, Todd Chapman wrote:

> 
> Is there a mod_perl bugs database? I am having a problem and I want to
> make sure it isn't a bug in mod_perl that's fixed in a recent release.

known bugs are listed in the ToDo file.
 
> P.S. The bug is that $r->connection->user() is not set when I return OK
> from my PerlAuthenHandler. I have to set it manually. Why would that be?

it's not a bug, it's because you're not calling $r->get_basic_auth_pw(),
which you should do instead of this:

>     my $authen = new HTTPD::Authen::Basic();
>     my @info = $authen->parse($r->header_in('Authorization'));

otherwise, you need to set $r->connection->user yourself.

Reply via email to