Re: mod_cache+mod_rewrite behaviour

2007-01-23 Thread Brian Akins
Niklas Edmundsson wrote: Since mod_cache runs as a quick handler, matching based on URL would probably be the easiest since you don't have the mime type info then. Maybe something like CacheEnable disk /special/path ignore_query Could add other options if future as well. -- Brian Akins Chief

Regarding the GSOAP module

2007-01-23 Thread shahid
Hi, I am developing a new module which needs to invoke few GSOAP calls up on Apache shutdown.I could invoke the calls by registering a notification through apr_pool_cleanup_register. But, the problem here is the GSOAP call fails during that period. I guess, gsoap module might be unloaded by

Re: setting request timeout in mod_proxy/mod_proxy_balancer

2007-01-23 Thread Lucas Brasilino
Hi Based on your configuration from above, the following should work: No, it doesn't. I've tried yet. From docs: 'Connection timeout in seconds. If not set the Apache will wait until the free connection is available. This directive is used for limiting the number of connections to the backend

Re: setting request timeout in mod_proxy/mod_proxy_balancer

2007-01-23 Thread Plüm , Rüdiger , VF EITO
-Ursprüngliche Nachricht- Von: Lucas Brasilino Gesendet: Dienstag, 23. Januar 2007 14:43 An: dev@httpd.apache.org Betreff: Re: setting request timeout in mod_proxy/mod_proxy_balancer Based on your configuration from above, the following should work: No, it doesn't. I've

RE: Bug [and proposed patch] for mod_ldap

2007-01-23 Thread Fenlason, Josh
Thanks for the response. I don't see what the problem would be in adding a check for LDAP_FILTER_ERROR at the end of authn_ldap_check_password() in Apache 2.2.x and then potentially abstracting the LDAP result codes to APR_LDAP codes in Apache 2.4. I'm not an Apache developer though. I would

Re: mod_cache+mod_rewrite behaviour

2007-01-23 Thread Akins, Brian
On 1/23/07 10:44 AM, Niklas Edmundsson [EMAIL PROTECTED] wrote: Ah, you can place CacheEnable-directives in the vhost context too. Then it should be sufficient, unless you want to say ignore querystring for all .gif:s or something like that. Perhaps use a regex instead? In our home-grown

Re: svn commit: r490156 - /httpd/httpd/trunk/modules/metadata/mod_headers.c

2007-01-23 Thread Ruediger Pluem
On 12/25/2006 06:40 PM, [EMAIL PROTECTED] wrote: Author: niq Date: Mon Dec 25 09:40:10 2006 New Revision: 490156 URL: http://svn.apache.org/viewvc?view=revrev=490156 Log: PR#36609 - permit % as the last character of a Header value Modified:

Re: mod_cache+mod_rewrite behaviour

2007-01-23 Thread Bart van der Schans
Akins, Brian wrote: In our home-grown cache module, the rules are actually provider based. We have providers that provide matches based on exact match, string match, regex, prefix, environment variable, and other assorted things. Something like: CacheEnable disk regex=\.gif$ ignore_query

Re: Are we ready for 3.3.1?

2007-01-23 Thread Eric Brunson
Switched production platforms, here's one more for you with the latest httpd: +1 Solaris 10 (x86), Apache 2.2.4 (mpm-prefork), Python 2.5 Jorey Bump wrote: It might be prudent to test against Apache 2.2.4, which was released two days ago. I'll try to do this over the weekend and submit the

Re: svn commit: r490156 - /httpd/httpd/trunk/modules/metadata/mod_headers.c

2007-01-23 Thread Nick Kew
On Tue, 23 Jan 2007 22:06:46 +0100 Ruediger Pluem [EMAIL PROTECTED] wrote: -/* Pass through %% as % */ -if (*s == '%') { +/* Pass through %% or % at end of string as % */ +if ((*s == '%') || (*s == '\0')) { tag-func = constant_item; tag-arg = %;