Re: [users@httpd] Curious inability to mod_rewrite absolute paths

2013-11-27 Thread Tom Evans
On Wed, Nov 27, 2013 at 5:37 AM, Borden Rhodes j...@bordenrhodes.com wrote: Good evening, I thought that I had worded my question clearly. Is there something wrong with how I've asked my question or that I'm asking for something very unusual? I'll do my best to give you all of the

Re: [users@httpd] Memory leak on 2.2.16

2013-11-27 Thread Eric Covener
php5_module (shared) third strike -- look into fastcgi. - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

[users@httpd] Apache 2.2.26 mod_headers Header onsuccess unset Age not working

2013-11-27 Thread Geoff Millikan
Hi all, Is it impossible for mod_headers to remove the Age header from items served out of mod_cache? (Example below) Thanks, Geoff Millikan Request URL: http://www.t1shopper.com/ssi/broadband.css Request Method: GET Status Code: 200 OK ---== Request Headers ==--- Accept:text/css,*/*;q=0.1

[users@httpd] Incomplete request with specified Content-Length

2013-11-27 Thread Sergey Spatar
Hi all! Please correct me if I am wrong but I think that Apache should not pass requests to modules such as PHP if full Content-Length was not received. Here is my test. I am sending a POST request with specified Content-Length and Content-Type: multipart/form-data but with missing last

Re: [users@httpd] Incomplete request with specified Content-Length

2013-11-27 Thread Eric Covener
On Wed, Nov 27, 2013 at 2:59 PM, Sergey Spatar spa...@gmail.com wrote: Hi all! Please correct me if I am wrong but I think that Apache should not pass requests to modules such as PHP if full Content-Length was not received. Apache doesn't buffer the request body and pass it to a module as a

[users@httpd] RE: Apache 2.2.26 mod_headers Header onsuccess unset Age not working

2013-11-27 Thread Geoff Millikan
I think I found it but anyone want to confirm Apache doesn't unset the Age header when mod_cache is used because the HTTP 1.1 spec requires it, An HTTP/1.1 server that includes a cache MUST include an Age header field in every response generated from its own cache.

Re: [users@httpd] RE: Apache 2.2.26 mod_headers Header onsuccess unset Age not working

2013-11-27 Thread Eric Covener
On Wed, Nov 27, 2013 at 3:58 PM, Geoff Millikan gmilli...@t1shopper.com wrote: I think I found it but anyone want to confirm Apache doesn't unset the Age header when mod_cache is used because the HTTP 1.1 spec requires it, An HTTP/1.1 server that includes a cache MUST include an Age header

RE: [users@httpd] RE: Apache 2.2.26 mod_headers Header onsuccess unset Age not working

2013-11-27 Thread Geoff Millikan
No, It doesn't unset the header because mod_headers only runs at the point where the original headers were sent. Most of the server processing is skipped when it's served from the cache, with the exception of connection-level stuff and mod_cache's own processing. Got it. Must all pages

Re: [users@httpd] RE: Apache 2.2.26 mod_headers Header onsuccess unset Age not working

2013-11-27 Thread Eric Covener
On Wed, Nov 27, 2013 at 6:29 PM, Geoff Millikan gmilli...@t1shopper.com wrote: No, It doesn't unset the header because mod_headers only runs at the point where the original headers were sent. Most of the server processing is skipped when it's served from the cache, with the exception of