Comment 3 for bug 610205

Revision history for this message
Daniel Ellis (danellisuk) wrote :

By the way, this issue makes Trac 0.11 run (or at least feel) very slow. I think this is because the browser cannot find jquery.js which causes all sorts of javascript errors.

I fixed our install by adding the following Alias to the path which does contain all the relevant files. Now trac is speedy again!

Alias /trac/chrome/common /usr/share/pyshared/trac/htdocs

<Directory "/usr/share/pyshared/trac/htdocs">
  Order allow,deny
  Allow from all
</Directory>

<Location /trac>
  # Trac config here...
</Location>

# Note, this Location must appear below the /trac location to take effect
<Location "/trac/chrome/common">
  SetHandler None
</Location>