Your Trac environment should *not* be inside your server htdocs
directory (assuming that your DocumentRoot is
C:\Program Files\Apache Software\Foundation\Apache2.2\htdocs

The DocumentRoot directory is dedicated to serve static pages, while
Trac pages are dynamically generated by the Trac engine. You'd better
move your Trac environment outside the htdocs tree.

I don't remember is which order the Apache rules are matched, but it
is likely that Apache serves the static pages from htdocs/Worldview
before the client request reaches the Trac handler.

> Which I guess is progress because it's not an error.
Not really, as it seems that Apache simply ignores the Trac python handler...

Assuming that DocumentRoot is C:\Program Files\Apache
Software\Foundation\Apache2.2\htdocs, try moving your Trac project in
another location, for example C:\Program Files\Apache
Software\Foundation\Apache2.2\trac\worldview and use

<Location "/Worldview">
   SetHandler mod_python
   PythonInterpreter main_interpreter
   PythonHandler trac.web.modpython_frontend
   PythonOption TracEnv "C:/Program Files/Apache Softwar
Foundation/Apache2.2/trac/worldview"
   PythonOption TracUriRoot /Worldview
 </Location>

I would recommend to avoid space characters in your path. You can use
short names (such as PROGRA~1 instead of Program Files) for example.

HTH,
Manu

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to