RE: [EMAIL PROTECTED] Apache 2.2.6 Windows 2003

2007-10-31 Thread Arthur Kreitman
What version of VC++ are you using, 2005? From: Blasdel, Jerry [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 31, 2007 2:17 PM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] Apache 2.2.6 Windows 2003 Hello, We have Apache 2.2.6 compiled (our

RE: [EMAIL PROTECTED] Apache on Windows

2007-03-07 Thread Arthur Kreitman
One caution for Apache on XP. The licensing for XP limits you to 10 simultaneous incoming tcp connections. -Original Message- From: Paul Simon [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 07, 2007 10:33 AM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Apache on

[EMAIL PROTECTED] Turning Off Access Log

2007-01-24 Thread Arthur Kreitman
I don't see an option to stop logging http requests. Is there one?

RE: [EMAIL PROTECTED] Turning Off Access Log

2007-01-24 Thread Arthur Kreitman
But its on windows! -Original Message- From: Serge Dubrouski [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 24, 2007 10:53 AM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Turning Off Access Log CustomLog /dev/null common if it's UNIX/Linux On 1/24/07, Arthur

[EMAIL PROTECTED] Pool usage for opening log files

2007-01-07 Thread Arthur Kreitman
This is under 2.2.2 under Windows. I need to periodically rename the error and access logs. I've noticed that all the file operations require a pool pointer. If I use a null to AprOpenFile, will that use a default pool. Is there a set on common pool pointers that I can reference? Since

[EMAIL PROTECTED] Adding apr_thread_mutex_t to httpd.h

2007-01-03 Thread Arthur Kreitman
I'm adding code to create new logs files periodically. This is on winnt. Since none of the log file support is thread safe, I want to add an access lock. I can't seem to get apr_thread_mutex_t defined in httpd.h. I've added #include apr_thead_mutex.h to no avail, there's some dependency I

RE: [EMAIL PROTECTED] Adding apr_thread_mutex_t to httpd.h

2007-01-03 Thread Arthur Kreitman
a header file! From: Sander Temme [mailto:[EMAIL PROTECTED] Sent: Wed 1/3/2007 9:21 AM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Adding apr_thread_mutex_t to httpd.h Arthur, On Jan 3, 2007, at 9:04 AM, Arthur Kreitman wrote: I'm adding code

RE: [EMAIL PROTECTED] Adding apr_thread_mutex_t to httpd.h

2007-01-03 Thread Arthur Kreitman
From: Arthur Kreitman [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 03, 2007 9:25 AM To: users@httpd.apache.org; users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] Adding apr_thread_mutex_t to httpd.h Here's an example that works, mod_isapi.c

[EMAIL PROTECTED] Where is access.log generated

2007-01-02 Thread Arthur Kreitman
I can't find where the writes to access.log are called? Any hints? Art

RE: [EMAIL PROTECTED] Header directive as workaround for mod_isapi bug

2006-12-26 Thread Arthur Kreitman
mod_isapi is broken in a number of ways. I think the bug you're seeing is fixed by a private update that the wrowe, the mod_isapi maintainer has provided. There are other issues, including a spurious internal server error 200 response, mishandling of default response headers and a bad internal

[EMAIL PROTECTED] httpd.conf file processing

2006-12-11 Thread Arthur Kreitman
I need to integrate Windows registry processing into the Apache configuration.I'd like a quick guide to how the internals of httpd,conf processing is supported so I don't have to read all the code. Can anyone give me a quick overview of how Apache locates httpd.conf, where the file is read,

[EMAIL PROTECTED] Windows Server Root with Spaces?

2006-12-08 Thread Arthur Kreitman
The standard place for programs in Windows is \Program Files\, with spaces allowed. Is apache capable of dealing with conf paths that include spaces? Thanks

RE: [EMAIL PROTECTED] difference between UNIX and WIN source package

2006-11-21 Thread Arthur Kreitman
I suspect the difference is the unix distribution includes support for such important systems as sgi and beos From: Syntax [mailto:[EMAIL PROTECTED] Sent: Monday, November 20, 2006 1:50 PM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] difference

RE: [EMAIL PROTECTED] Tuning the MaxKeepAliveRequests and KeepAliveTimeout http.conf parameters

2006-11-21 Thread Arthur Kreitman
and KeepAliveTimeout http.conf parameters Arthur Kreitman wrote: I noticed a random but all to frequent (perhaps 1 or 2 or 3 for every few hundred http requests) error from ap_core_output_filter (about line 903 in core_filters.c). The error is an os 10054 An existing connection was forcibly closed

[EMAIL PROTECTED] Premature Socket Disconnect with Apache 2.2/mod_isapi/Windows XP

2006-11-14 Thread Arthur Kreitman
This is with Apache 2.2 on Windows XP with mod_isapi (the 416293 update). Im getting a random but not too infrequent error from ap_core_output_filter (about line 903 in core_filters.c). The error is an os 10054 An existing connection was forcibly closed by the remote host. On the

[EMAIL PROTECTED] Where are all the accepts?

2006-11-14 Thread Arthur Kreitman
This is with Apache 2.2 on Windows XP with mod_isapi (the 416293 update). The usual way I thought http requests are serviced are as follows: The server does a listen on a socket to attach it to the port (usually port 80) The server waits on a select, when the select is satisfied

RE: [EMAIL PROTECTED] Where are all the accepts?

2006-11-14 Thread Arthur Kreitman
, 2006 11:25 AM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Where are all the accepts? Hey Arthur, On Nov 14, 2006, at 11:18 AM, Arthur Kreitman wrote: When I trace through what apache actually does, when a specific client sends lots of requests, I see just the occasional

RE: [EMAIL PROTECTED] Where are all the accepts?

2006-11-14 Thread Arthur Kreitman
To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Where are all the accepts? On Nov 14, 2006, at 11:44 AM, Arthur Kreitman wrote: The client is actually a WinInet (Microsoft's magic internet library) application. Its sets INTERNET_FLAG_EXISTING_CONNECT but doesn't set