Edgewall Software

Changes between Version 82 and Version 83 of TracSubversion


Ignore:
Timestamp:
Aug 30, 2010, 10:46:53 PM (14 years ago)
Author:
sahendrickson@…
Comment:

Wrapped the WSGIApplicationGroup within Location tags. Perhaps obvious, but I had placed it in the wrong location and gotten the error.

Legend:

Unmodified
Added
Removed
Modified
  • TracSubversion

    v82 v83  
    201201This problem can also occur when using mod_wsgi for both embedded mode or daemon mode. As documented in [http://code.google.com/p/modwsgi/wiki/IntegrationWithTrac integrating Trac with mod_wsgi], the solution is the same as for mod_python. That is, force Trac instance to run in main Python interpreter instance. When using mod_wsgi this is done using:
    202202{{{
     203<Location>
     204...
    203205WSGIApplicationGroup %{GLOBAL}
     206...
     207</Location>
    204208}}}
    205209