Re: hi

2004-01-27 Thread Enrico Querci
Norton AntiVirus removed the attachment: document.zip. The attachment was infected with the [EMAIL PROTECTED] virus. [EMAIL PROTECTED] wrote: The message contains Unicode characters and has been sent as a binary attachment.

Re: mystery solved... perhaps.

2004-01-27 Thread Joe Orton
On Mon, Jan 26, 2004 at 04:55:34PM -0600, Ben Collins-Sussman wrote: On Fri, 2004-01-23 at 08:07, Joe Orton wrote: Nice, this is easy enough to reproduce. It only fills up because the httpd children all have the read end of the pipe open, which is a bug in itself. Applying below ensures

Proxy hiccups with WSAEADDRINUSE

2004-01-27 Thread Tikka, Sami
We are using httpd 2.0.48 as a forward proxy. We run on Windows 2000 and 2003 servers and have seen weird errors when the load is high. Proxy vomits in the error log: [error] (OS 10048)Only one usage of each socket address (protocol/network address/port) is normally permitted. : proxy: HTTP:

Re: Proxy hiccups with WSAEADDRINUSE

2004-01-27 Thread Jeff Trawick
Tikka, Sami wrote: [error] (OS 10048)Only one usage of each socket address (protocol/network address/port) is normally permitted. : proxy: HTTP: attempt to connect to 1.2.3.4:80 (1.2.3.4) failed ... hundreds of megabytes of these errors. 10048 is WSAEADDRINUSE. It seems to happen in

Re: [PATCH] raise MAX_SERVER_LIMIT

2004-01-27 Thread Jeff Trawick
worker MPM stack corruption in parent: int free_slots[MAX_SPAWN_RATE]; ... /* great! we prefer these, because the new process can * start more threads sooner. So prioritize this slot * by putting it ahead of any slots with active threads.

Re: [PATCH] raise MAX_SERVER_LIMIT

2004-01-27 Thread Jeff Trawick
Jeff Trawick wrote: worker MPM stack corruption in parent: int free_slots[MAX_SPAWN_RATE]; ... /* great! we prefer these, because the new process can * start more threads sooner. So prioritize this slot * by putting it ahead of any

Re: fstat?

2004-01-27 Thread Brian Akins
Brian Akins wrote: More of an apr question, Any reason there is no equivalent to fstat? Never mind. I found it. obviously it's apr_file_info_get -- Brian Akins Senior Systems Engineer CNN Internet Technologies

Re: page out of date

2004-01-27 Thread Erik Abele
On 26.01.2004, at 18:32, Aryeh Katz wrote: http://apache.get-software.com/httpd/binaries/win32/README.html doesn't have the correct version numbers. Fixed (also in HEADER.html). As an aside, would it make more sense to use SSI, and get the version number from the SERVER_SOFTWARE environment

Re: fstat?

2004-01-27 Thread Cliff Woolley
On Tue, 27 Jan 2004, Brian Akins wrote: Any reason there is no equivalent to fstat? Never mind. I found it. obviously it's apr_file_info_get It used to be called apr_stat(), actually ... but then we went through a naming sterilization process so it ended up as apr_file_info_get(). :)

adding output filters in quickhandler

2004-01-27 Thread Brian Akins
Possible bug: If I add an output filter in the quickhandler for something like /foo/ and later mod_dir changes it to /foo/index.html, my output filter is never ran. Is this why mod_cache cannot cache things that end in /. This just seems broken... -- Brian Akins Senior Systems Engineer CNN

worker MPM parent exits

2004-01-27 Thread Jeff Trawick
Colm MacCarthaigh wrote: On Mon, Jan 26, 2004 at 10:05:33PM +, Colm MacCarthaigh wrote: disable the check for geteuid()==0 and see if you get backtrace? exception hook purposefully doesn't run as root (I assume your parent is running as root) No problem, first thing tomorrow :) O.k.,

Re: [PATCH] raise MAX_SERVER_LIMIT

2004-01-27 Thread Ben Laurie
Colm MacCarthaigh wrote: On Mon, Jan 26, 2004 at 06:28:03PM +, Colm MacCarthaigh wrote: I'd love to find out what's causing your worker failures. Are you using any thread-unsafe modules or libraries? Not to my knowledge, I wasn't planning to do this till later, but I've bumped to 2.1, I'll

new core module mod_version

2004-01-27 Thread Andr Malo
That has been long time on my todo (hello Stas! :-) There's a new module I'd like to add to the core distribution. It makes use of the new httpd version query function (ap_get_server_revision). It introduces IfVersion containers, where you can depend your config on a particular httpd version. I