Windows 2003 Server I created a python virtual environment (using --no-site-packages) and easy_installed Trac on it. What I'm trying to do is in Apache have an existing Trac install point to this virtual environment. Here's my configuration, can anyone tell me where I may be going wrong? Thanks.
Apache config ------------------------ # Path to Trac Standards site <Location /standards> SetHandler mod_python PythonPath "['F:/PythonConfig/Trac11/Scripts'] + sys.path" PythonInterpreter main_interpreter PythonHandler virtualtrac11 PythonOption TracEnv "F:/tracrepo/standards" PythonOption TracUriRoot /standards </Location> virtualtrac11.py (located in F:/PythonConfig/Trac11/Scripts) ------------------------ #virtualtrac11.py # http://trac.edgewall.org/wiki/TracDev/AlternativeFrontends import os import site site.addsitedir('F:/PythonConfig/Trac11/Lib/site-packages') from trac.web.modpython_frontend import handler -- 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.
