Re: mod_python 3.2.5b - FreeBSD 6.0 segfault

2005-11-17 Thread Barry Pederson
Barry Pederson wrote: FreeBSD 6.0 Apache 2.0.55 port built WITH_THREADS=1 Python 2.4.2 == ERROR: test_connectionhandler (__main__.PerRequestTestCase)

Re: mod_python 3.2.5b available for testing

2005-11-17 Thread Gregory (Grisha) Trubetskoy
OK, I think we got enough +1's and no show-stopping problems (for a beta at least). I copied it over the apache server, once the mirrors sync I'll update the site and send the big announcement. Grisha On Mon, 14 Nov 2005, Jim Gallacher wrote: A new mod_python 3.2.5 beta tarball is now

Re: mod_python 3.2.5b available for testing

2005-11-17 Thread Jim Gallacher
Gregory (Grisha) Trubetskoy wrote: OK, I think we got enough +1's and no show-stopping problems (for a beta at least). I copied it over the apache server, once the mirrors sync I'll update the site and send the big announcement. I was also thinking it was time for a wider release, but was

[jira] Commented: (MODPYTHON-76) input filter hangs in combination with mod_proxy

2005-11-17 Thread Graham Dumpleton (JIRA)
[ http://issues.apache.org/jira/browse/MODPYTHON-76?page=comments#action_12357955 ] Graham Dumpleton commented on MODPYTHON-76: --- For further details on this issue see developer mailing list posts.

[jira] Created: (MODPYTHON-92) Raise more specific IOError when req.write() fails.

2005-11-17 Thread Graham Dumpleton (JIRA)
Raise more specific IOError when req.write() fails. --- Key: MODPYTHON-92 URL: http://issues.apache.org/jira/browse/MODPYTHON-92 Project: mod_python Type: Improvement Components: core Versions: 3.3

Please include mpm-itk into upsteam.

2005-11-17 Thread Corentin CHARY
Hi, I needed a simple way to user different Uid/Gid for my vhost, without cgi, and with a not-threaded mpm (php is not realy threadsafe ...). I discover mpm-itk (based on mpm-prefork) http://home.samfundet.no/~sesse/mpm-itk/ and mpm-peruser (based on mpm-metux) http://www.telana.com/peruser.php

Re: Please include mpm-itk into upsteam.

2005-11-17 Thread Joshua Slive
Corentin CHARY wrote: Hi, I needed a simple way to user different Uid/Gid for my vhost, without cgi, and with a not-threaded mpm (php is not realy threadsafe ...). I discover mpm-itk (based on mpm-prefork) http://home.samfundet.no/~sesse/mpm-itk/ and mpm-peruser (based on mpm-metux)

Re: Please include mpm-itk into upsteam.

2005-11-17 Thread Corentin CHARY
Le Jeudi 17 Novembre 2005 15:52, Joshua Slive a écrit : mpm-itk processes requests as root, which is a major security problem. Yep, but it drop as many privileges as it can. It is also unclear to me how mpm-itk handles multiple connections. Either it is serving only one request and then

Re: Please include mpm-itk into upsteam.

2005-11-17 Thread Joshua Slive
Corentin CHARY wrote: I read the code, it seems that it kill the process ... The configuration is not the main problem ... i know how to do that, but it means 2 process per request (with prefork, and i need to use prefork with php ...). I haven't tested, but I can almost guarantee

Re: Please include mpm-itk into upsteam.

2005-11-17 Thread Corentin CHARY
Le Jeudi 17 Novembre 2005 17:17, Joshua Slive a écrit : If I needed to do this myself, I would run a light-weight server under worker or event as a reverse proxy feeding requests to back-end servers running prefork. Given that the back-end is running heavy-weight php code, the performance

Re: svn commit: r345301 - /httpd/httpd/trunk/docs/manual/mod/core.xml

2005-11-17 Thread Justin Erenkrantz
--On November 17, 2005 6:29:43 PM + [EMAIL PROTECTED] wrote: * Deprecate AddOutputFilterByType I disagree. IMHO, recommending switching to mod_filter is like telling people to switch from Alias to mod_rewrite. As I said when this was discussed on the list, the AddOutputFilterByType

Re: svn commit: r345301 - /httpd/httpd/trunk/docs/manual/mod/core.xml

2005-11-17 Thread Joshua Slive
Justin Erenkrantz wrote: --On November 17, 2005 6:29:43 PM + [EMAIL PROTECTED] wrote: * Deprecate AddOutputFilterByType I disagree. IMHO, recommending switching to mod_filter is like telling people to switch from Alias to mod_rewrite. As I said when this was discussed on the list,

1st attempt to solve with proxy_connect.c (was: Bug 19188)

2005-11-17 Thread Alexander Lazic
Hi, On Mit 16.11.2005 19:09, Alexander Lazic wrote: @Joe Orton: do you have a patch for mod_proxy_connect? http://issues.apache.org/bugzilla/show_bug.cgi?id=19188 as joe suggested i have start to implement the connect call with proxy_connect.c. I have attached my first attempt, but it

Re: gratuitous call to create_server_config?

2005-11-17 Thread Brandon Fosdick
Sander Temme wrote: $ gdb bin/httpd ... (gdb) run -X Starting program: /Volumes/Files/asf/httpd-2.2.x/bin/httpd -X It seems that gdb doesn't like me... (gdb) run -X Starting program: /usr/local/sbin/httpd -X gdb in realloc(): error: pointer to wrong page Abort (core dumped)

[PATCH 37533] mod_dbd pool and config handling

2005-11-17 Thread Chris Darroch
Hi -- Nick suggested I start posting more to the list, so this one's on his head. :-) Per the guidelines, the patches themselves are in Bugzilla in bug number 37533. I'd also like to float the suggestion that the DBDKeep and DBDExptime directives be renamed to match the use in mod_proxy,

Re: gratuitous call to create_server_config?

2005-11-17 Thread Brandon Fosdick
I just tried returning NULL from create_server_config to see what would happen if I refused to create a config for the master process. Apparently that's a bad idea because it results in a segfault on startup. It seems like the server should be more robust in the face of such things. Has this