Edgewall Software

Changes between Initial Version and Version 1 of TracOnWindowsIis


Ignore:
Timestamp:
Aug 12, 2004, 11:57:47 AM (20 years ago)
Author:
josh_robb at fastmail.fm
Comment:

Describe issues with Trac on IIS

Legend:

Unmodified
Added
Removed
Modified
  • TracOnWindowsIis

    v1 v1  
     1= Running Trac on IIS 6 =
     2
     3
     4Currently Trac will not run properly un-patched on Microsofts IIS (Internet Information Server). This is due to a buggy CGI implementation by Microsoft. See #692 #693 and #697.
     5
     6Hint's for getting it working:
     7 * Do NOT rename trac.cgi to trac.py - you will get an import error "No module named core". Either setup the IIS script mapping so that python.exe is used for .cgi files or renamme trac.cgi to cgitrac.py.
     8
     9 * Ensure that Python is enabled as a WebService Extension on IIS 6. You may need to add the python.exe interpreter to get this working. Ensure that you use the same parameters as you have in the script maping.
     10
     11The following script maping is what worked for me:
     12{{{
     13c:\Python23\python.exe -u "%s" %s
     14}}}
     15