RE: piped log files

2003-12-01 Thread Michael Corcoran
Hi, Maybe this is something to do with a bug that I just reported. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25103 The bug I reported is actually in the APR, it seems to cause very strange things to happen. What's happening, it seems, is that Apache calls apr_proc_create() to spawn

2.0.49 segfaults with no Listen directive

2004-03-18 Thread Michael Corcoran
) { --- if ((ap_listeners) (ap_listeners-next)) { ...the problem is just that ap_listeners is being dereference, but it is in fact NULL. Thanks, Michael Corcoran.

Apache 2.0 Seg Faults when using mod_disk_cache

2004-08-30 Thread Michael Corcoran
, Michael Corcoran.

mod_cache does not return a 304 Not Modified

2004-09-08 Thread Michael Corcoran
Hello, I may be missing something inmy Apache configuration, or maybe this is a well-known problemBut, I can't seem to get mod_cache (with mod_proxy and mod_disk_cache) to return a 304 Not Modified response even when all of the headers of the in the HTTP request should produce a 304

RE: mod_cache does not return a 304 Not Modified

2004-09-08 Thread Michael Corcoran
0.9.7dEtag: "8e156f37-1-0-2eef"Accept-ranges: bytesContent-length: 12015Last-Modified: Wed, 07 Jul 2004 05:55:54 GMTContent-Type: text/cssAge: 3286Keep-Alive: timeout=15, max=100Connection: Keep-Alive From: Michael Corcoran [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 08, 20

RE: mod_cache does not return a 304 Not Modified

2004-09-09 Thread Michael Corcoran
into the r-headers_out table. If anyone wants to point me in the right direction or have a look themselves, it would be much appreciated. Best regards, Michael Corcoran. -Original Message- From: Justin Erenkrantz [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 08, 2004 6:14 PM

Add ETag to ap_scan_script_header_err_core()

2004-09-21 Thread Michael Corcoran
Hello, I've been trying to find a solution to a problem that mod_cache has with handling Etag's properly. I'm working with Apache 2.0.51. Below is a diff to ./server/util_script.c that seems to fix the problem... 564a565,567 else if (!strcasecmp(w, ETag)) {

Rotatelogs crashes after fork() and execve() on Solaris/Intel

2004-09-21 Thread Michael Corcoran
Hello, On Solaris/Intel, rotatelogs will always crash right after it is spawned. This only happens on the Solaris/Intel platform. It works fine on Solaris/SPARC, and on Linux, etc. But for some reason, the code that is currently used in Apache 2.0.51 to fork() and exec() processes like

Access request_rec from a connection filter in Apache 2.0

2003-01-17 Thread Michael Corcoran
Hello, I have a connection filter of type AP_FTYPE_NETWORK which gets called just before the core output filter. I have placed it here to get at (read only) the raw output of the server for a given request. The problem that I am facing is that when my filter callback gets called, there is no

Peek at POSTed data

2003-06-16 Thread Michael Corcoran
I'm wondering if there is a nice way in Apache 2.0 to peek at the incoming POSTed data without removing the data from the view of other modules? So, for example, in my modules fixup stage I'd like to have a look at the POSTed data, but still be able to let a different module actually handle

RE: Peek at POSTed data

2003-06-16 Thread Michael Corcoran
I am not too familiar with the internals of Apache, so I apologize if this wish on my wish list is way of base and I especially apologize if the following over simplifies what would be required, but here it goes... Would it be possible to (or how would I?) be able to implement a function that

RE: Peek at POSTed data

2003-06-17 Thread Michael Corcoran
it is meant to work on regular html form name/value pairs. -Original Message- From: William A. Rowe, Jr. [mailto:[EMAIL PROTECTED] Sent: Monday, June 16, 2003 7:06 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: Peek at POSTed data At 06:36 PM 6/16/2003, Michael Corcoran wrote