David Binger wrote: > Hi Michael. > > We haven't had time to write an announcement yet, but we > released a new scgi package yesterday. > http://www.mems-exchange.org/software/scgi/ > > The new version offers what I think is a clearer type of > Apache directive. It goes something like: > > SCGIMount / localhost:4000 > > I think this sets the SCRIPT_NAME properly (and that is > the source of the trouble you are having now, which you could > also solve, I think, by setting using the scgi server's > script name command line argument.) I had been using earlier Quixote, but I started over again with Quixote 2.1 (which also doesn't have a release announcement) and SCGI 1.5 All it does is change the syntax for me: SCGIMount / localhost:4000Order allow,deny Allow from all The error pops up about the same way. One of the hints works though, I came up with this way of running the scgi_server.py that seems to work: python scgi_server.py --port 4000 --script-name= -Mike