Re: [jira] Created: (MODPYTHON-120) Connection handler test fails on virtual hosting system such as OpenVPS.

2006-02-05 Thread Jorey Bump
Graham Dumpleton (JIRA) wrote: On a virtual hosting environment such as OpenVPS, localhost does not map to the IP address 127.0.0.1 but the actual IP of the host. import socket socket.gethostbyname(localhost) '207.126.122.36' This fact causes the connection handler test to fail

mod_python 3.2.7 available for testing

2006-02-05 Thread Jim Gallacher
Mod_python 3.2.7 tarball is available for test. Here's hoping this will be to final time we need your help testing before the official release. 3.2.7 adds a fix for the connection read issue that was causing problems on FreeBSD. Here are the rules: In order for a file to be officially

Re: mod_python 3.2.7 available for testing

2006-02-05 Thread Jim Gallacher
+1 Debian (sid), Apache 2.0.55-prefork, Python 2.3.5 +1 Debian (sarge), Apache 2.0.54-worker, Python 2.3.5 +1 Debian (sarge), Apache 2.0.54-prefork, Python 2.3.5 Jim Jim Gallacher wrote: Mod_python 3.2.7 tarball is available for test. Here's hoping this will be to final time we need your help

Re: APR cross-platform signal semantics

2006-02-05 Thread Nick Kew
On Sunday 05 February 2006 06:12, Garrett Rooney wrote: Is the following correct and complete for APR signals to function across platforms? static void my_handler(int signum) { apr_signal_block(signum) ; /* do things */ apr_signal_unblock(signum) ; } static void

mod_ssl 5s delay

2006-02-05 Thread Oden Eriksson
Hello. For some reason I get a 5 seconds delay for each ssl access, I get it with 2.2.0 and 2.2.x head. I just can't figure out what is wrong. It worked fine with 2.0.x. -- Regards // Oden Eriksson Mandriva: http://www.mandriva.com NUX: http://li.nux.se

Re: svn commit: r375083 - in /httpd/httpd/trunk/docs/manual/faq: background.html.en background.xml

2006-02-05 Thread Joshua Slive
On 2/5/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Author: niq Date: Sun Feb 5 11:30:29 2006 New Revision: 375083 URL: http://svn.apache.org/viewcvs?rev=375083view=rev Log: PR#38521 - fix link. -liYou may use the a href=http://httpd.apache.org/docs/apache_pb.gif;'Powered by

Re: svn commit: r375083 - in /httpd/httpd/trunk/docs/manual/faq: background.html.en background.xml

2006-02-05 Thread André Malo
* [EMAIL PROTECTED] wrote: Author: niq Date: Sun Feb 5 11:30:29 2006 New Revision: 375083 URL: http://svn.apache.org/viewcvs?rev=375083view=rev Log: PR#38521 - fix link. Modified: httpd/httpd/trunk/docs/manual/faq/background.html.en

Bug report for Apache httpd-1.3 [2006/02/05]

2006-02-05 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned

Bug report for Apache httpd-2 [2006/02/05]

2006-02-05 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned

[EMAIL PROTECTED]

2006-02-05 Thread sachin sachin
Hi, In proxy_html module, I configured proxyHTMLURLMap value like below ProxyHTMLURLMap (.*) http://192.168.112.53:8080/${TARGET_SERVER}/$1 RXi Here i would try to get value of TARGET_SERVER value dynamically from the request structure (recquest_rec *). How to store value in request_rec ? Is