Re: Apache logging

2010-09-14 Thread Stefan Fritsch
On Monday 13 September 2010, Sergio Junqueira wrote: Do you need the first entry to determine which request may have caused httpd to crash or is there a different reason? Mod_log_forensics writes the log record as soon as it is received. Mod_log_config writes the log record after the

Re: Apache logging

2010-09-13 Thread Igor Galić
- Sergio Junqueira sjjrb...@yahoo.com wrote: Do you need the first entry to determine which request may have caused httpd to crash or is there a different reason? Mod_log_forensics writes the log record as soon as it is received. Mod_log_config writes the log record after the

Re: Apache logging

2010-09-13 Thread Sergio Junqueira
was sent or if the request failed. Thanks, From: Igor Galić @brainsware.org To: dev@httpd.apache.org Sent: Mon, September 13, 2010 3:51:47 AM Subject: Re: Apache logging - Sergio Junqueira @yahoo.com wrote: Do you need the first entry to determine which

Re: Apache logging

2010-09-12 Thread Stefan Fritsch
On Fri, 10 Sep 2010, Sergio Junqueira wrote: I have a suggestion for the developers of Apache related to mod_log_config or mod_log_forensics: 1) To allow mod_log_config to write the log file with a first log entry with basic information about the request before it's processed further (that is,

Re: Apache logging

2010-09-12 Thread Sergio Junqueira
AM Subject: Re: Apache logging On Fri, 10 Sep 2010, Sergio Junqueira wrote: I have a suggestion for the developers of Apache related to mod_log_config or mod_log_forensics: 1) To allow mod_log_config to write the log file with a first log entry with basic information about the request

RE: Apache logging

2010-09-12 Thread David Dabbs
%3Dgp%253Abrowse%253A%253AToddler%2520Girl%2520%25281-5%252 0yrs%2529%253ASale%253ASweaters%3Bu10%3Dhttp%253A//blah.com/browse/category. do%253Fcid%253D26047%3Bord%3D1%3F From: Sergio Junqueira Sent: Sunday, September 12, 2010 8:35 PM To: dev@httpd.apache.org Subject: Re: Apache logging Do you

Apache logging

2010-09-10 Thread Sergio Junqueira
I have a suggestion for the developers of Apache related to mod_log_config or mod_log_forensics: 1) To allow mod_log_config to write the log file with a first log entry with basic information about the request before it's processed further (that is, after receiving the headers). The second log

Re: Apache logging in prev?

2009-04-16 Thread Bob Ionescu
2009/4/15 Michele Waldman mmwald...@nyc.rr.com: ./server/util_script.c apr_table_addn(e, REMOTE_USER, r-user); apr_table_addn(e, REDIRECT_REMOTE_USER, back-user); I could this. Is this the right place? That's for ENVs, but not the place where a module reads and sets

Apache logging in prev?

2009-04-15 Thread Michele Waldman
In auth_mod_digest, it looks for previous authentication: while (mainreq-prev != NULL) { mainreq = mainreq-prev; } I'm trying to prevent this in certain cases to allow a new login. If I stop this statement, it uses the new creditials to validate, but this user is not

RE: Apache logging in prev?

2009-04-15 Thread Michele Waldman
, 2009 3:13 PM To: modules-dev@httpd.apache.org Subject: Apache logging in prev? In auth_mod_digest, it looks for previous authentication: while (mainreq-prev != NULL) { mainreq = mainreq-prev; } I'm trying to prevent this in certain cases to allow a new login