Navigation


Changes between Version 2 and Version 3 of TracModPython


Ignore:
Timestamp:
Mar 4, 2011, 2:02:10 PM (13 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracModPython

    v2 v3  
    66These instructions are for Apache 2; if you are still using Apache 1.3, you may have some luck with [trac:wiki:TracModPython2.7 TracModPython2.7].
    77
     8== A Word of Warning ==
     9
     10As of 16^th^ June 2010, the mod_python project is officially dead.  If you are considering using mod_python for a new installation, '''please don't'''!  There are known issues which will not be fixed and there are now better alternatives.  Check out the main TracInstall pages for your target version for more information.
     11
    812== Simple configuration ==
    913
     
    2125(Still on Debian) after you have installed mod_python, you must enable the modules in apache2 (equivalent of the above Load Module directive):
    2226{{{
    23 a2enmod mod_python
     27a2enmod python
    2428}}}
    2529On Fedora use, using yum:
     
    3438   PythonInterpreter main_interpreter
    3539   PythonHandler mod_python.testhandler
     40   Order allow,deny
     41   Allow from all
    3642</Location>
    3743}}}
     
    4652   PythonOption TracEnv /var/trac/myproject
    4753   PythonOption TracUriRoot /projects/myproject
     54   Order allow,deny
     55   Allow from all
    4856</Location>
    4957}}}