Russell Hind wrote:
Not sure, but perhaps something to do with this the 'ht_docs' location
for your trac repository. I had some trouble with this when I first set
trac up.
http://projects.edgewall.com/trac/wiki/TracIni
If this is any help, I set up a mod_python installation with trunk of
trac a couple of weekends ago on my development machine. Very basic
setup, but this is my apache config for it:
(Apache-2.0.55, mod_python-3.2.8, python-2.3.5, svn-1.3.1 and trac-0.10dev)
<Location /svn>
DAV svn
SVNListParentPath On
SVNParentPath C:/Users/Shared/svn
AuthType Basic
AuthName "svn test reporitories"
AuthUserFile C:/Users/Shared/svn/svn.htpasswd
AuthzSVNAccessFile C:/Users/Shared/svn/svn.access
<LimitExcept GET PROPFIND OPTIONS REPORT>
Require valid-user
</LimitExcept>
</Location>
Alias /trac "C:\Python23\share\trac\htdocs"
<Directory "C:\Python23\share\trac\htdocs">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<Location /trac/repo>
SetHandler mod_python
PythonHandler trac.web.modpython_frontend
PythonOption TracUriRoot "/trac/repo"
PythonOption TracEnv C:/Users/Shared/trac/repo
PythonOption LC_TIME "English_United Kingdom"
</Location>
<Location /trac/repo/login>
AuthType Basic
AuthName "trac test database"
AuthUserFile C:/Users/Shared/trac/trac.htpasswd
Require valid-user
</Location>
Maybe this helps?
Cheers
Russell
_______________________________________________
Trac mailing list
[email protected]
http://lists.edgewall.com/mailman/listinfo/trac