Env: ubuntu, apache2, libapache2-mod-python (ubuntu package version:
3.2.8-1ubuntu2), trac (Versionl listed in about window: 0.10.3)
I have the problem that a user needs to authenticate twice when
logging into trac.
HTTP authentication is configured by creating a .htpasswd in
<project_home>/db/.htpasswd (using htpasswd -n <user> >> .htpasswd)
Apache2 is configured as follows:
<Location /projects/testproject>
SetHandler mod_python
PythonHandler trac.web.modpython_frontend
PythonOption TracEnv /coding/trac/testproject
PythonOption TracUriRoot /projects/testproject
AuthType Basic
AuthName "projects/testproject"
AuthUserFile /coding/trac/testproject/db/.htpasswd
Require valid-user
</Location>
I do not want to just use auth for the login page, the auth needs to
be done to access any parts of this trac, thats why it is configured
'globally' for the whole project.
Comprehensive descriptio:
the first time I hit <host>/projects/testproject in Firefox the usual
login window appears, I put in username/pwd and the wiki home gets
loaded, BUT: the trac logo image on top and bottom are not displayed
but anything else is (I also see on the right top side that I'm
already logged in trac with my username). The login window appears
again and asks me to authenticate. I put in username/pwd again and
both logo images get loaded
is this a known code defect ?
or what else might me wrong here ?
What I also noticed is that the redirection does not work when I do
any action (like wiki update, create ticket a.s.o) on trac. I just see
a 'Redirecting...' page and nothing happens. Maybe this is related.
Thanks for any help here
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac
Users" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---