Edgewall Software

Changes between Version 47 and Version 48 of TracOnUbuntu


Ignore:
Timestamp:
Aug 18, 2006, 4:22:34 PM (18 years ago)
Author:
metapundit
Comment:

Adding TracEnvParentDir for mod_python

Legend:

Unmodified
Added
Removed
Modified
  • TracOnUbuntu

    v47 v48  
    279279}}}
    280280to have it function properly.
     281
     282If you're using the mod_python setup above, use CamelCase on the PARENT_DIR parameter:
     283
     284{{{
     285<Location /trac>
     286        SetHandler mod_python
     287        PythonHandler trac.web.modpython_frontend
     288        PythonOption TracEnvParentDir /var/trac
     289        PythonOption TracUriRoot "/trac"
     290</Location>
     291}}}
     292
     293
     294yielded a working trac installation for me.