Hi,i posted last week an incoplete question and now i'm trying to explain it
better.
I dont't want to use apache login that use pop-up and i was trying to use
http authentication with form aplication, i have setted trac.ini a apache
following the istructions of the webadmin plugin.I use thie configuration
for trac:
acct_mgr.admin.accountmanageradminpage = enabled
acct_mgr.api.accountmanager = enabled
acct_mgr.htfile.abstractpasswordfilestore = enabled
acct_mgr.htfile.htdigeststore = disabled
acct_mgr.htfile.htpasswdstore = enabled
acct_mgr.web_ui.accountmodule = enabled
acct_mgr.web_ui.loginmodule = enabled
acct_mgr.web_ui.registrationmodule = enabled
trac.web.auth.LoginModule= disabled
and for apache i used this 2 configurations
<Location /trac/tesi>
SetHandler mod_python
PythonHandler trac.web.modpython_frontend
PythonOption TracLocale "it_IT.UTF-8"
PythonOption TracEnv /home/svntest01/TRAC/tesi
PythonOption TracUriRoot /trac/tesi
AuthType Basic
AuthName "Tesi"
AuthUserFile /home/svntest01/TRAC/trac.htpasswd
# Require valid-user
</Location>
or
<Location /trac/tesi>
SetHandler mod_python
PythonHandler trac.web.modpython_frontend
PythonOption TracLocale "it_IT.UTF-8"
PythonOption TracEnv /home/svntest01/TRAC/tesi
PythonOption TracUriRoot /trac/tesi
# AuthType Basic
AuthName "Tesi"
# AuthUserFile /home/svntest01/TRAC/trac.htpasswd
# Require valid-user
</Location>
The problem is that when i use one of the following apache configurations
and try to connect to trac, trac give this message: "No administration
panels available"
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---