Hello,
I try to create a working Trac installation on Apache. At the moment I have got some problems with the login:
If I setup in my apache config this calls:
<Location /trac/>
AuthType Basic
AuthName "Trac Auth"
AuthUserFile /trac/auth
Require valid-user
</Location>
My user is a TRAC_ADMIN user and I can update all data via webpanel. The logout link on the trac
page does not work, so I can't logout my user.
At next I would like to create an anonymous login, so not-loggin people can show all tickets etc, so I modify
the location to
<Location /trac/login>
but this does not work, I'm always logged in as "REDIRECT_REMOTE_USER" and no login-button or webforms are shown,
if I call /trac/login manually I can insert my login data, but trac shows always the REDIRECT_REMOTE_USER.
How can I configurate Apache & Trac in this case, that a non-logged.in user is mapped to an anonymous user that can read all data and how can I get a login form / link?
Thanks