Hello folks,

I'm new to trac and just finished setting it up but can't stand how slow it is in cgi mode so i set it up with mod_python. Trac runs for the most part, how ever there are some pages what won't display, the only thing that appears is an icon. Example of these pages are the wiki page and the newticket.

Let me explain a bit more,

http://localhost/trac/ --- displays main wiki page
http://localhost/trac/wiki --- Displays icon
http://localhost/trac/wiki/<any other page> --- Not found.

Any help? Thought it might by my httpd.conf, but it doesn't make sense, because it works in cgi-mode.  So Any idea of how to help me out?

thats my httpd trac setup btw, just incase something is wrong =)

# TRAC
Alias /trac "C:/Python23/share/trac/htdocs"

<Location /trac>
  SetHandler mod_python
  PythonHandler trac.web.modpython_frontend
  PythonOption TracEnv c:/Projects/twf.db
  PythonOption TracUriRoot /trac
</Location>

<Location /trac/login>
  AuthType Basic
  AuthName "Localhost"
  AuthUserFile C:/Projects/twf/.htaccess
  Require valid-user
</Location>

<Directory "C:/Python23/share/trac/htdocs">
  Options Indexes MultiViews
  AllowOverride None
  Order allow,deny
  Allow from all
</Directory>


--
Atentamente,
Héctor Partidas
Desarrollador
tuWebFacil.com
_______________________________________________
Trac mailing list
[email protected]
http://lists.edgewall.com/mailman/listinfo/trac

Reply via email to