I am trying to use Python only
You have no choice: Trac is written in Python. Python is the language in which Trac is written.
From a very high level, mod_python can be see as a gateway between the
web server (which receives the client requests) and the application (Trac, which runs with the Python interpreter). CGI and FastCGI are alternate methods that play the same role as mod_python: browser --> [Internet] ---> Apache ---> ModPyton --> Trac (w/ Python) or browser --> [Internet] ---> Apache ---> CGI --> Trac (w/ Python) If you use CGI, you cannot use mod_python (and vice versa). You really need to start again from the TracInstall page, as you are mixing several methods in your configuration file. Let's say you want to run mod_python, read carefully http://projects.edgewall.com/trac/wiki/TracModPython you'll see there is no syntax such as <Location /cgi-bin/trac\.f?cgi> in this page. No CGI at all. HTH, Manu _______________________________________________ Trac mailing list [email protected] http://lists.edgewall.com/mailman/listinfo/trac
