You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl@perl.apache.org by Victor Michael Blancas <mi...@iconverge.com> on 2000/11/08 13:15:27 UTC

need AuthName error

Has anybody experienced something like this in their error log

[(date)] [error] [client (client's ip)] need AuthName: (filename)

But the pages are served without errors.

Using mod_perl 1.24_01 on Apache 1.3.14
Apache::ASP
-- 
Mike


Re: need AuthName error

Posted by Joshua Chamas <jo...@chamas.com>.
Victor Michael Blancas wrote:
> 
> Has anybody experienced something like this in their error log
> 
> [(date)] [error] [client (client's ip)] need AuthName: (filename)
> 
> But the pages are served without errors.
> 
> Using mod_perl 1.24_01 on Apache 1.3.14
> Apache::ASP

It seems to be a feature of recent apache's to give off
this error ... just set apache's AuthName somewhere.  The 
problem is that Apache::ASP tries to fetch auth info if its 
available by default.  Another way to go would be to
turn off this default behavior and create a config, which 
might be the right thing since this error is a terrible
one to figure out.

--Joshua