> # TracModPython > ScriptAlias /trac /usr/local/share/trac/cgi-bin/trac.cgi > ScriptAlias /project /usr/local/share/trac/cgi-bin/trac.cgi
Useless: if you are using mod_python, you don't need a CGI script, but a PythonHandler directive. It seems that you are still using CGI. > <Location /trac> > SetEnv TRAC_ENV "/home/sherwood/projectTrac" > </Location> > > <Location /project> > SetEnv TRAC_ENV "/home/sherwood/projectTrac" > </Location> You only need one of the above directives, depending on how you want to acces Trac (http://server/project or http://server/trac). However, again, TRAC_ENV is for CGI configuration. The directive are different for mod_python <Location /home/sherwood/projectTrac> This is not a valid directive: Location refer to the URL (e.g. /project), Directory refers to a physical directory (e.g. /home/sherwood/project) > PythonPath "sys.path + ['/usr/local/trac-0.10.3/lib/python2.4/site- > packages'] + [/usr/local/trac-0.10.3/lib/python2.4/site-packages/trac']" the .../site-packages/trac path is not needed. > but neither one seems to work. Where should I put the htpasswd file > for this to work? Unfortunately, there are many errors in your config file. I'd suggest you carefully read the Trac installation pages on trac.edgewall.org Cheers, Manu --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
