Re: mod_python 3.3.0-dev-20061109 tests on Win32

2006-11-16 Thread Jeff Robbins
Graham, Here is the mod_python.vcproj file with finfoobject.c It produces a mod_python.so that is bigger than the one the command line setup.py build produces. Must be different build options. Where are the setup.py options specified? Also, this vcproj only build mod_python.so, not

Re: [EMAIL PROTECTED] Re: How the PHP works?

2006-11-16 Thread Mathieu CARBONNEAUX
and libneon also: http://www.webdav.org/neon/ Mathieu _ From: Joachim Zobel [mailto:[EMAIL PROTECTED] To: dev@httpd.apache.org Sent: Mon, 13 Nov 2006 22:54:35 +0100 Subject: [EMAIL PROTECTED] Re: How the PHP works? Am Montag, den 13.11.2006, 21:39 +0100 schrieb Toni Pizà: I will try to

Re: [PATCH] log path to config file during startup

2006-11-16 Thread Jeff Trawick
On 10/16/06, Eric Covener [EMAIL PROTECTED] wrote: Patch below logs the path to the config file just before ap_mpm_run() Can help clear up some mysteries when posthumously analyzing an ErrorLog as a further aid, is it practical to add a list of defines used to parse the conf file? [notice]

Re: http://svn.apache.org/viewvc?view=revrevision=426799

2006-11-16 Thread Plüm , Rüdiger , VF EITO
-Ursprüngliche Nachricht- Von: Nick Kew Gesendet: Donnerstag, 16. November 2006 02:36 On Wed, 15 Nov 2006 21:33:07 +0100 Ruediger Pluem [EMAIL PROTECTED] wrote: Because of your question I had to rewalk the code path and I think I found two other bugs with my code. I

Re: [PATCH] log path to config file during startup

2006-11-16 Thread Joe Orton
On Thu, Nov 16, 2006 at 07:45:08AM -0500, Jeff Trawick wrote: On 10/16/06, Eric Covener [EMAIL PROTECTED] wrote: Patch below logs the path to the config file just before ap_mpm_run() Can help clear up some mysteries when posthumously analyzing an ErrorLog as a further aid, is it practical

Re: [Fwd: Re: Apache 2.2.3 mod_proxy issue]

2006-11-16 Thread Jim Jagielski
On Oct 31, 2006, at 9:58 AM, Jess Holle wrote: Jim Jagielski wrote: Sounds good. On a related note, our practice with mod_jk is to route only *.jsp, /servlet/*, and a few other URL patterns to Tomcat and let Apache handle everything else. We also want to support load balancing with

Re: [Fwd: Re: Apache 2.2.3 mod_proxy issue]

2006-11-16 Thread William A. Rowe, Jr.
Jim Jagielski wrote: By the way, ProxyPass /servlet/ balancer://mycluster does the 2nd part of what you want, it's just the '*.jsp' stuff we're missing... So basically, ProxyPass more JkMount-like... By the way, I've really looked at this and it isn't required really to make ProxyPass

Re: http://svn.apache.org/viewvc?view=revrevision=426799

2006-11-16 Thread Ruediger Pluem
On 11/16/2006 02:25 PM, Plüm wrote: -Ursprüngliche Nachricht- Von: Nick Kew Gesendet: Donnerstag, 16. November 2006 02:36 On Wed, 15 Nov 2006 21:33:07 +0100 Ruediger Pluem [EMAIL PROTECTED] wrote: Because of your question I had to rewalk the code path and I think I found two other

Setting both Server and Directory Config Structs from the same config function

2006-11-16 Thread David Wortham
Hello fellow module developers! I am trying to debug one of my directive-handling functions. I want to set both the server and the appropriate directory structures when the function is invoked. Currently, I am getting Segmentation Faults (outside of all of my functions) when I set my server

Re: Setting both Server and Directory Config Structs from the same config function

2006-11-16 Thread Nick Kew
On Thu, 16 Nov 2006 16:39:26 -0700 David Wortham [EMAIL PROTECTED] wrote: Hello fellow module developers! I am trying to debug one of my directive-handling functions. You haven't really told us enough to make a diagnosis. However, the thing that springs to mind from the above is that you

Re: Setting both Server and Directory Config Structs from the same config function

2006-11-16 Thread David Wortham
Nick, I was almost done copy-pasting and simplifying my code when I re-read your response. I had previously tried an if/else in the directive handling function (as in: if (dir-path is set) { set dir_struct; } else { set svr_struct; } ). For some reason, I didn't think that the call had to be