Changes between Version 2 and Version 3 of TracModPython
- Timestamp:
- 08/22/11 13:23:41 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracModPython
v2 v3 281 281 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. 282 282 283 === Problem with zipped egg === 284 285 It's possible that your version of mod_python will not import modules from zipped eggs. If you encounter an `ImportError: No module named trac` in your Apache logs but you think everything is where it should be, this might be your problem. Look in your site-packages directory; if the Trac module appears as a ''file'' rather than a ''directory'', then this might be your problem. To rectify, try installing Trac using the `--always-unzip` option, like this: 286 287 {{{ 288 easy_install --always-unzip Trac-0.12b1.zip 289 }}} 290 283 291 === Using .htaccess === 284 292