Bobbysmith007 wrote:
> I had been using apache 2.0 but when I most recently apt-get upgraded,
> I was moved to Apache2.2.3.  I cannot seem to get authentication to
> work and after reading all of the other tickets and posts related to
> this problem, I know I must have something in the config messed up.
>
> The error I get is :
> File "/usr/lib/python2.4/site-packages/trac/web/auth.py", line 116, in
> _do_login
>     assert req.remote_user, 'Authentication information not available.'
> AssertionError: Authentication information not available.
>
> With the following config:
...snip...
> <LocationMatch "/projects/[^/]+/login">
>   AuthType Basic
>   AuthName "Trac"
>   AuthBasicProvider file
>   AuthUserFile /var/trac/.password
>   Satisfy Any
>   Require valid-user
> </LocationMatch>

Get rid of "Satisfy Any".  When you use that Apache will not force
users to authenticate, which is why you're seeing that problem.

-- Matt Good


--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"Trac Users" group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to