On Tue, Mar 19, 2002 at 10:17:14PM -0500, Neal Holtz wrote: > I'm trying to use mod_fastcgi with Apache and Quixote-0.4.4 on the > standard demo. The demo runs, but it is not persistent (i.e., I do not > notice any speed up over normal CGI). I see the Python process start > up, but it terminates as soon as the request is finished. Make sure the RUN_ONCE config option is set. Check the error logs. Maybe the process is dying after serving one request for some reason. Try looking at "ps axf" output. After accessing the demo once you should see a "fcgi" process (the manager) and it should have at least one child (the Quixote demo application). > I have copied demo.cgi to demo.fcgi and I access the latter. > It does run, but not quickly. The speed difference between FastCGI is pretty huge. You should know when it's working correctly. Neil