[modwsgi] Re: WSGI application files affecting each other

2009-07-21 Thread Graham Dumpleton
2009/7/21 Malcolm Lalkaka mlalk...@gmail.com: On Mon, Jul 20, 2009 at 1:20 AM, Graham Dumpletongraham.dumple...@gmail.com wrote: 2009/7/20 Graham Dumpleton graham.dumple...@gmail.com: 2009/7/20 Graham Dumpleton graham.dumple...@gmail.com: 2009/7/20 Malcolm mlalk...@gmail.com: Hello, I

[modwsgi] Re: How mod_wsgi handle concurrent wsgi request?

2009-07-21 Thread yashhappy
1. prefork MPM is configured with. 2. MPM configuration is like the following, contained by conf/extra/httpd-mpm.conf IfModule mpm_prefork_module StartServers 5 MinSpareServers 5 MaxSpareServers 10 MaxClients 150

[modwsgi] Re: Sometimes my Django site just does not respond at first

2009-07-21 Thread Andrew
Hiya, Apologies for resurrecting a dormant topic, but I've just spent a couple of hours spinning my wheels on this and have found that one possible cause for the bucket brigade error message is a bug in Safari/ OS X: https://bugs.webkit.org/show_bug.cgi?id=5760#c38 From that bug report:

[modwsgi] Re: Sometimes my Django site just does not respond at first

2009-07-21 Thread Graham Dumpleton
2009/7/21 Andrew zen...@gmail.com: Hiya, Apologies for resurrecting a dormant topic, but I've just spent a couple of hours spinning my wheels on this and have found that one possible cause for the bucket brigade error message is a bug in Safari/ OS X: Thanks for posting this. I have read

[modwsgi] Re: How mod_wsgi handle concurrent wsgi request?

2009-07-21 Thread Graham Dumpleton
I don't see anything inherently wrong with what you are doing on the server side. I can only suggest that you add some debug into the test application that outputs to Apache error log to see how things progress on server side. See below for that and other comments. 2009/7/21 yashhappy

[modwsgi] Re: WSGIScriptAlias contains russian characters in directory part

2009-07-21 Thread Graham Dumpleton
What version of mod_wsgi are you using? If you are mod_wsgi 2.3 or older, ensure you upgrade to mod_wsgi 2.5. This will mean you will have to use Python 2.6 as no binaries for older Python versions. I cannot duplicate the problem you are having on MacOS X, with it working for me.

[modwsgi] Re: New release candidate for 3.0 available.

2009-07-21 Thread Graham Dumpleton
2009/7/21 gert gert.cuyk...@gmail.com: On Jul 21, 6:12 am, Graham Dumpleton graham.dumple...@gmail.com wrote: 2009/7/21 gert gert.cuyk...@gmail.com: On Jul 17, 9:54 am, Graham Dumpleton graham.dumple...@gmail.com wrote: Release candidate 4 for mod_wsgi 3.0 is now available.

[modwsgi] Re: New release candidate for 3.0 available.

2009-07-21 Thread gert
On Jul 21, 2:27 pm, Graham Dumpleton graham.dumple...@gmail.com wrote: 2009/7/21 gert gert.cuyk...@gmail.com: On Jul 21, 6:12 am, Graham Dumpleton graham.dumple...@gmail.com wrote: 2009/7/21 gert gert.cuyk...@gmail.com: On Jul 17, 9:54 am, Graham Dumpleton

[modwsgi] Re: WSGIScriptAlias contains russian characters in directory part

2009-07-21 Thread Mike Plavsky
Was using mod_wsgi 2.3, checked with mod_wsgi 2.5 and Python 2.6.1 - the result is the same. So yes, probably the issue is Windows specific. BTW do you test mod_wsgi on Windows? On Jul 21, 12:01 pm, Graham Dumpleton graham.dumple...@gmail.com wrote: What version of mod_wsgi are you using? If

[modwsgi] Premature end of script headers

2009-07-21 Thread gert
I wonder if this is normal behavior ? http://code.google.com/p/appwsgi/source/browse/trunk/appwsgi/wsgi/download.wsgi Apache 2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8g mod_wsgi/3.0c5- TRUNK Python/3.1 WSGIDaemonProcess www python-path=/usr/httpd/www user=www group=www processes=1 threads=1

[modwsgi] Re: Premature end of script headers

2009-07-21 Thread Graham Dumpleton
The code in that area was just changed for Python 3.X. Obviously something isn't right. Change to use: start_response(b'200 OK', ...) Ie., add a 'b' in front of status string so bytes are used. That might get it working while I get a chance to look at it. BTW, hadn't you noticed that the

[modwsgi] Re: Premature end of script headers

2009-07-21 Thread gert
No I was too bussy wondering why changing a comment line in my python code translated into a crashing aplication :) On Jul 22, 1:05 am, Graham Dumpleton graham.dumple...@gmail.com wrote: The code in that area was just changed for Python 3.X. Obviously something isn't right. Change to use:  

[modwsgi] Re: WSGIScriptAlias contains russian characters in directory part

2009-07-21 Thread Graham Dumpleton
2009/7/22 Mike Plavsky supermapl...@gmail.com: Was using mod_wsgi 2.3, checked with mod_wsgi 2.5 and Python 2.6.1 - the result is the same. So yes, probably the issue is Windows specific. BTW do you test mod_wsgi on Windows? I have only recently starting compiling mod_wsgi on Windows myself.