On Mon, Apr 09, 2007 at 03:32:48PM -0400, Brian McCann wrote: > Hi Emmanuel, > > my httpd.conf file is set like this > > <Location /trac/test> > SetHandler mod_python > PythonHandler trac.web.modpython_frontend > PythonOption TracEnv /v01/trac/test > PythonOption TracUriRoot /projects/myproject > </Location> > the error log throws the error below > s.path.join(self.path, 'VERSION'), 'r') > [Mon Apr 09 15:04:28 2007] [error] [client 10.120.116.216] IOError: [Errno 2] > No such file or directory: '/v01/trac/test/VERSION'
TracEnv /must/ point to the /physical/ location of your trac environment, while TracUriRoot /must/ point to the /logical/ location of your environment. Said this, im most environments, TracUriRoot has to match <Location>, and TracEnv has to match the path to your trac environment in the file system. Rainer --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
