Edgewall Software

Changes between Version 86 and Version 87 of TracModPython


Ignore:
Timestamp:
Nov 15, 2006, 2:12:12 PM (17 years ago)
Author:
eric.thelin@…
Comment:

Added a section about page layout issues

Legend:

Unmodified
Added
Removed
Modified
  • TracModPython

    v86 v87  
    168168If 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`).
    169169
     170=== Page layout issues ===
     171
     172If the formatting of the Trac pages look weird chances are that the style sheets governing the page layout are not handled properly by the web server. Try adding the following lines to your apache configuration:
     173{{{
     174Alias /myproject/css "/usr/share/trac/htdocs/css"
     175<Location /myproject/css>
     176    SetHandler None
     177</Location>
     178}}}
     179Note: For the above configuration to have any effect it must be put after the configuration of your project root location, i.e. {{{<Location /myproject />}}}.
    170180----
    171181See also TracGuide, TracInstall, TracCgi, TracFastCgi