Hi all,

I am using the above setup partly because of history and partly because
of my service provider.

I have it running smoothly but I had to make the following change to
fastcgi.py:

from:
    def getNextChunk(self, data):
        chunk = data[:8192]
        data = data[8192:]
        return chunk, data
to:
    def getNextChunk(self, data):
        chunk = data[:8184]
        data  = data[8184:]
        return chunk, data

If I don't do this then some pages will hang forever.  Anybody else
experienced this?

- sim
_______________________________________________
Quixote-users mailing list
[email protected]
http://mail.mems-exchange.org/mailman/listinfo/quixote-users

Reply via email to