Changes between Version 3 and Version 4 of TracModPython
- Timestamp:
- 10/14/06 02:56:30 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracModPython
v3 v4 11 11 }}} 12 12 13 ''Note: The exact path to the module depends on how the HTTPD installation is la yed out.''13 ''Note: The exact path to the module depends on how the HTTPD installation is laid out.'' 14 14 15 15 You can test your mod_python installation by adding the following to your httpd.conf. You should remove this when you are done testing for security reasons. … … 133 133 If the <Location /> directive is used, setting the `DocumentRoot` may result in a ''403 (Forbidden)'' error. Either remove the `DocumentRoot` directive, or make sure that accessing the directory it points is allowed (in a corresponding `<Directory>` block). 134 134 135 Using <Location /> together with `SetHandler` resulted in having everything handled by mod_python, which leads to not being able download any CSS or images/icons. I used <Location /trac> `SetHandler None` </Location> to circumvent the problem, though I do not know if this is the most elegant solution. 136 135 137 === Using .htaccess === 136 138 … … 162 164 === Subversion issues === 163 165 164 If you get the following Trac Error `Unsupported version control system "svn"` only under mod_python, though it works well on the command-line and even with TracStandalone, chances are that you forgot to add the path to the Python bindings with the [TracModPython#ConfiguringPythonPath PythonPath] directive (The better way is to add a link to the bindings in the Python `site-packages` directory, or create a `.pth` file in that directory.)166 If you get the following Trac Error `Unsupported version control system "svn"` only under mod_python, though it works well on the command-line and even with TracStandalone, chances are that you forgot to add the path to the Python bindings with the [TracModPython#ConfiguringPythonPath PythonPath] directive. (The better way is to add a link to the bindings in the Python `site-packages` directory, or create a `.pth` file in that directory.) 165 167 166 168 If this is not the case, it's possible that you're using Subversion libraries that are binary incompatible with the apache ones (an incompatibility of the `apr` libraries is usually the cause). In that case, you also won't be able to use the svn modules for Apache (`mod_dav_svn`).