Re: [EMAIL PROTECTED] Logging

2008-09-29 Thread Nilesh Govindrajan
I think you can do that using feature. Though I'm not sure. On Tue, Sep 30, 2008 at 6:33 AM, Diogo de Sousa Neves <[EMAIL PROTECTED]>wrote: > Hi, > > Is there a way to have individual access logs using userdir_module ? > > thanks > > --

[EMAIL PROTECTED] Logging

2008-09-29 Thread Diogo de Sousa Neves
Hi, Is there a way to have individual access logs using userdir_module ? thanks - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscr

Re: [EMAIL PROTECTED] Logging query strings from a re-write rule

2008-07-14 Thread Francois Gingras
tring of the URL that I > am sending the browser to. > If that makes sense.. > > Steve > > -Original Message- > From: Francois Gingras [mailto:[EMAIL PROTECTED] > Sent: 10 July 2008 14:16 > To: users@httpd.apache.org > Subject: Re: [EMAIL PROTECTED] Logging quer

RE: [EMAIL PROTECTED] Logging query strings from a re-write rule

2008-07-14 Thread Foster, Stephen (ASPIRE)
July 2008 14:16 To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Logging query strings from a re-write rule Steve, Without digging too much in your particular issue, note that RewriteCond will only match the query string if you use %{QUERY_STRING}; You can check the following guide for

Re: [EMAIL PROTECTED] Logging query strings from a re-write rule

2008-07-10 Thread Francois Gingras
Steve, Without digging too much in your particular issue, note that RewriteCond will only match the query string if you use %{QUERY_STRING}; You can check the following guide for examples: http://wiki.apache.org/httpd/RewriteQueryString Frank On 7/10/08, Foster, Stephen (ASPIRE) <[EMAIL PROTECT

[EMAIL PROTECTED] Logging query strings from a re-write rule

2008-07-10 Thread Foster, Stephen (ASPIRE)
Hi, I have implemented a re-write rule that captures the incoming requests, checks for a cookie and then directs the user to another system to authenticate and get a cookie before being allowed to access pages under the webserver. E.g: RewriteCond %{HTTP_HOST} !="" RewriteCond %{REQUEST_

Re: [EMAIL PROTECTED] Logging Denied Referrers

2008-03-31 Thread Joshua Slive
On Mon, Mar 31, 2008 at 8:21 AM, Grant Peel <[EMAIL PROTECTED]> wrote: > Just for my own amusement, could they be combined like this (since I am > realy only worried about the virtual hosts document roots only), > > > > Options Indexes Includes FollowSymLinks > AllowOverride Options Al

Re: [EMAIL PROTECTED] Logging Denied Referrers

2008-03-31 Thread Grant Peel
- Original Message - From: "Joshua Slive" <[EMAIL PROTECTED]> To: ; "Grant Peel" <[EMAIL PROTECTED]> Sent: Monday, March 31, 2008 7:47 AM Subject: Re: [EMAIL PROTECTED] Logging Denied Referrers On Sun, Mar 30, 2008 at 8:32 PM, Grant Peel <[EMA

Re: [EMAIL PROTECTED] Logging Denied Referrers

2008-03-31 Thread Joshua Slive
On Sun, Mar 30, 2008 at 8:32 PM, Grant Peel <[EMAIL PROTECTED]> wrote: > Joshua, > > So, cand these be combined into one container somehow? > > > > Order Allow,Deny > Allow from all > Deny from env=block_bad_bots > > > > Options Indexes Includes FollowSymLinks > # F

Re: [EMAIL PROTECTED] Logging Denied Referrers

2008-03-30 Thread Grant Peel
- Original Message - From: "Joshua Slive" <[EMAIL PROTECTED]> To: ; "Grant Peel" <[EMAIL PROTECTED]> Sent: Sunday, March 30, 2008 5:43 PM Subject: Re: [EMAIL PROTECTED] Logging Denied Referrers On Sun, Mar 30, 2008 at 3:32 PM, Grant Peel <[EMAIL PROT

Re: [EMAIL PROTECTED] Logging Denied Referrers

2008-03-30 Thread Joshua Slive
On Sun, Mar 30, 2008 at 3:32 PM, Grant Peel <[EMAIL PROTECTED]> wrote: > Thanks Joshua, > > So, If I am reading that docs correctly, the bit I have to deny certain USer > Agents should go near the top of my httpd.conf? > > SetEnvIfNoCase User-Agent "^IDBot" block_bad_bots > SetEnvIfNoCase User-

Re: [EMAIL PROTECTED] Logging Denied Referrers

2008-03-30 Thread Grant Peel
/1.4.1_04" block_bad_bots Order Allow,Deny Allow from all Deny from env=block_bad_bots -Grant - Original Message - From: "Joshua Slive" <[EMAIL PROTECTED]> To: ; "Grant Peel" <[EMAIL PROTECTED]> Sent: Sunday, March 30, 2008 12:53 PM

Re: [EMAIL PROTECTED] Logging Denied Referrers

2008-03-30 Thread Joshua Slive
On Sun, Mar 30, 2008 at 12:15 PM, Grant Peel <[EMAIL PROTECTED]> wrote: > > > Hi all, > > As mentioned in previous emails, I am trying to deny access via SetEnvIf > statements in my httpd.conf (to block smap bots / email harvesters etc. > > I have two questions: > > 1. My server has several hundred

Re: [EMAIL PROTECTED] Logging Denied Referrers

2008-03-30 Thread Grant Peel
All, I misspoke below, I am talking about User Agents not referrers! - Original Message - From: Grant Peel To: users@httpd.apache.org Sent: Sunday, March 30, 2008 12:15 PM Subject: [EMAIL PROTECTED] Logging Denied Referrers Hi all, As mentioned in previous emails, I am

[EMAIL PROTECTED] Logging Denied Referrers

2008-03-30 Thread Grant Peel
Hi all, As mentioned in previous emails, I am trying to deny access via SetEnvIf statements in my httpd.conf (to block smap bots / email harvesters etc. I have two questions: 1. My server has several hundred VirtualHost directives. When the SetEnvIf statements are just placed in the main serve

Re: [EMAIL PROTECTED] Logging mod_deflate compression ratios

2008-03-14 Thread Steve Finkelstein
Hi Eric, I'm using FF2 on a macbook pro, and after verifying with Live HTTP Headers, the client is indeed advertising the required headers with the following: Accept-Encoding: gzip,deflate I can even see with Firebug that the requested files are being reduced in size by a great ordeal after a cl

Re: [EMAIL PROTECTED] Logging mod_deflate compression ratios

2008-03-14 Thread Eric Covener
On Fri, Mar 14, 2008 at 4:34 PM, Steve Finkelstein <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm trying to log actual ratios of Compression that mod_deflate is > responsible for handling. I've followed the guidelines on Apache's > site and have the following directives setup: Is your client adve

[EMAIL PROTECTED] Logging mod_deflate compression ratios

2008-03-14 Thread Steve Finkelstein
Hi all, I'm trying to log actual ratios of Compression that mod_deflate is responsible for handling. I've followed the guidelines on Apache's site and have the following directives setup: DeflateFilterNote Input instream DeflateFilterNote Output outstream DeflateFilterNote Ratio ratio SetOutputF

Re: [EMAIL PROTECTED] Logging question

2007-12-04 Thread Sameer Naik
> > Is it possible to log incoming connections that don't send any data? > > Don't think so... HTTP is an application that sits on top of TCP/IP. So > the session is established at the TCP/IP layer and the server is ready > to pipe any incoming data to apache. But, at this point, apache is > un

Re: [EMAIL PROTECTED] Logging question

2007-12-03 Thread Christian Folini
On Mon, Dec 03, 2007 at 09:01:41AM +0100, Boyle Owen wrote: > > Is it possible to log incoming connections that don't send any data? > > Don't think so... HTTP is an application that sits on top of TCP/IP. So > the session is established at the TCP/IP layer and the server is ready > to pipe any in

RE: [EMAIL PROTECTED] Logging question

2007-12-03 Thread Boyle Owen
> -Original Message- > From: David Robinson [mailto:[EMAIL PROTECTED] > Sent: Sunday, December 02, 2007 12:15 AM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Logging question > > Is it possible to log incoming connections that don't send any data?

[EMAIL PROTECTED] Logging question

2007-12-01 Thread David Robinson
Is it possible to log incoming connections that don't send any data? Basically like a telnet client opens up a connection to port 80 but then never ships any data? David - The official User-To-User support forum of the Apache HT

Re: [EMAIL PROTECTED] logging php usage and directory index pages

2007-11-11 Thread Joshua Slive
On Nov 11, 2007 7:43 PM, Alex Dean <[EMAIL PROTECTED]> wrote: > >>> 2. Can I log the actual file that was served, even for directory indexes? > >>> > >>> I've tried the '%f' log format, and for http://site.com requests, I get > >>> a log of '/var/www/site.com/htdocs/'. If the directory index file

Re: [EMAIL PROTECTED] logging php usage and directory index pages

2007-11-11 Thread Alex Dean
Joshua Slive wrote: On Nov 11, 2007 12:21 PM, Alex Dean <[EMAIL PROTECTED]> wrote: Can anyone help with this? [EMAIL PROTECTED] wrote: Two questions about logging: 1. Can I log whether or not the current request was operated on by mod_php? I want to determine what % of my requests are PHP.

Re: [EMAIL PROTECTED] logging php usage and directory index pages

2007-11-11 Thread Joshua Slive
On Nov 11, 2007 12:21 PM, Alex Dean <[EMAIL PROTECTED]> wrote: > Can anyone help with this? > > [EMAIL PROTECTED] wrote: > > Two questions about logging: > > > > 1. Can I log whether or not the current request was operated on by mod_php? > > > > I want to determine what % of my requests are PHP. I

Re: [EMAIL PROTECTED] logging php usage and directory index pages

2007-11-11 Thread Alex Dean
Can anyone help with this? [EMAIL PROTECTED] wrote: Two questions about logging: 1. Can I log whether or not the current request was operated on by mod_php? I want to determine what % of my requests are PHP. I've tried to determine this based on filename, but with ForceType and other config

[EMAIL PROTECTED] logging php usage and directory index pages

2007-11-07 Thread alex
Two questions about logging: 1. Can I log whether or not the current request was operated on by mod_php? I want to determine what % of my requests are PHP. I've tried to determine this based on filename, but with ForceType and other configuration directives, it's possible for a file to be p

Re: [EMAIL PROTECTED] Logging to a MySQL Database

2007-10-31 Thread Samuel Vogel
Hey guys, I am running Apache 2.2 and did try out mod_log_mysql to make my logs to to an mysql table. Unfortunately I do run apache in prefork mode and in peak times, there are arround 700 processes running. The bad thing is that mod_log_mysql makes a new mysql connection for every single thre

Re: [EMAIL PROTECTED] Logging to a MySQL Database

2007-10-31 Thread Nick Kew
On Wed, 31 Oct 2007 20:51:54 +0100 Samuel Vogel <[EMAIL PROTECTED]> wrote: > Hey guys, > > I am running Apache 2.2 and did try out mod_log_mysql to make my logs > to to an mysql table. Unfortunately I do run apache in prefork mode > and in peak times, there are arround 700 processes running. > Th

[EMAIL PROTECTED] Logging to a MySQL Database

2007-10-31 Thread Samuel Vogel
Hey guys, I am running Apache 2.2 and did try out mod_log_mysql to make my logs to to an mysql table. Unfortunately I do run apache in prefork mode and in peak times, there are arround 700 processes running. The bad thing is that mod_log_mysql makes a new mysql connection for every single thre

[EMAIL PROTECTED] Logging wether a request has been proxied or not

2007-10-19 Thread Christian Folini
Hi there, I am trying to figure out a simple way to write a flag into the access log. This flag should state wether a request has been treated locally or wether it has been proxied/forwarded to a backend server. So far I arrived with LogFormat "... %{proxyflag}e ..." extended SetEnv proxyflag

Re: [EMAIL PROTECTED] logging into stderr using mod_cgid

2007-10-15 Thread Artem Kuchin
William A. Rowe, Jr. wrote: Artem Kuchin wrote: Who do i contact to get this issue solved? I did not see any contact email in the source and i am too lame to understand cgid sources. The project is aware of this "deficiency" in the cgid daemon. Well, i guess so, because first bug report on

Re: [EMAIL PROTECTED] logging into stderr using mod_cgid

2007-10-15 Thread William A. Rowe, Jr.
Artem Kuchin wrote: Who do i contact to get this issue solved? I did not see any contact email in the source and i am too lame to understand cgid sources. The project is aware of this "deficiency" in the cgid daemon. - The of

Re: [EMAIL PROTECTED] logging into stderr using mod_cgid

2007-10-15 Thread Artem Kuchin
Artem Kuchin wrote: I have submitted a bug report about this 1-2 years ago and decided to check this issue today in otder to switch to worker mpm. The problem is that when using cgid and print to stderr, say, like this fprintf(stderr,"Hello error log!"); the messages goes into main server log, n

Re: [EMAIL PROTECTED] logging into stderr using mod_cgid

2007-10-15 Thread Artem Kuchin
I have submitted a bug report about this 1-2 years ago and decided to check this issue today in otder to switch to worker mpm. The problem is that when using cgid and print to stderr, say, like this fprintf(stderr,"Hello error log!"); the messages goes into main server log, not into virtual serve

Re: [EMAIL PROTECTED] Logging Options - Extended W3C Log Format?

2007-10-14 Thread solprovider
W3C's Extended Log File Format adds some header information to standard logs. The Working Draft datetime examples use language-dependent month names; the ISO format for datetimes would be better if the W3C can be convinced to follow standards. Here is an example: #Version: 1.0 #Fields: remotehos

[EMAIL PROTECTED] Logging Options - Extended W3C Log Format?

2007-10-14 Thread J R M
All, I've recently had a request from one of our clients to provide their logs in the 'Extended W3C Log Format'. From my googling around the place, this appears to be pretty much a log format exclusive to IIS. From poking around google and reading http://www.w3.org/TR/WD-logfile.html the f

Re: [EMAIL PROTECTED] logging into stderr using mod_cgid

2007-10-14 Thread Octavian Rasnita
Sunday, October 14, 2007 8:13 PM Subject: [EMAIL PROTECTED] logging into stderr using mod_cgid Hello! I have submitted a bug report about this 1-2 years ago and decided to check this issue today in otder to switch to worker mpm. The problem is that when using cgid and print to stderr, say, like

[EMAIL PROTECTED] logging into stderr using mod_cgid

2007-10-14 Thread Artem Kuchin
Hello! I have submitted a bug report about this 1-2 years ago and decided to check this issue today in otder to switch to worker mpm. The problem is that when using cgid and print to stderr, say, like this fprintf(stderr,"Hello error log!"); the messages goes into main server log, not into

[EMAIL PROTECTED] Re: Apache under MacOSX 10.4.10 (was Re: [EMAIL PROTECTED] logging incomming traffic)

2007-08-31 Thread Neville Hillyer
At 12:36 -0400 30/08/2007, Eric Gorr wrote: On Aug 30, 2007, at 10:55 AM, Joshua Slive wrote: On 8/30/07, Eric Gorr <[EMAIL PROTECTED]> wrote: Sorry, I should have mentioned that I am using Apache 1.3.33 which is the default server under MacOSX. Then go ahead and pull out your network sniff

Re: [EMAIL PROTECTED] Apache under MacOSX 10.4.10 (was Re: [EMAIL PROTECTED] logging incomming traffic)

2007-08-30 Thread Dragon
Eric Gorr wrote: On Aug 30, 2007, at 10:55 AM, Joshua Slive wrote: On 8/30/07, Eric Gorr <[EMAIL PROTECTED]> wrote: Sorry, I should have mentioned that I am using Apache 1.3.33 which is the default server under MacOSX. Then go ahead and pull out your network sniffer, since this obsolete ve

[EMAIL PROTECTED] Apache under MacOSX 10.4.10 (was Re: [EMAIL PROTECTED] logging incomming traffic)

2007-08-30 Thread Eric Gorr
On Aug 30, 2007, at 10:55 AM, Joshua Slive wrote: On 8/30/07, Eric Gorr <[EMAIL PROTECTED]> wrote: Sorry, I should have mentioned that I am using Apache 1.3.33 which is the default server under MacOSX. Then go ahead and pull out your network sniffer, since this obsolete version doesn't have

Re: [EMAIL PROTECTED] logging incomming traffic

2007-08-30 Thread Joshua Slive
On 8/30/07, Eric Gorr <[EMAIL PROTECTED]> wrote: > Sorry, I should have mentioned that I am using Apache 1.3.33 which is > the default server under MacOSX. Then go ahead and pull out your network sniffer, since this obsolete version doesn't have that feature. Joshua. ---

Re: [EMAIL PROTECTED] logging incomming traffic

2007-08-30 Thread Vincent Bray
On 30/08/2007, Eric Gorr <[EMAIL PROTECTED]> wrote: > I was wondering if it was possible to configure apache to record how > many bytes were sent to it from the client as well. http://httpd.apache.org/docs/2.2/mod/mod_logio.html Cheers, -- noodl -

Re: [EMAIL PROTECTED] Logging problem using mod_proxy and UsePreserveHost

2007-04-25 Thread Joshua Slive
On 4/25/07, Foster, Stephen (ASPIRE) <[EMAIL PROTECTED]> wrote: This format works fine and logs the client IP and the host that the request is intended to go to for locally served content such as gif's etc. However for objects that get proxied of to the other backend servers i get a log entry

[EMAIL PROTECTED] Logging problem using mod_proxy and UsePreserveHost

2007-04-25 Thread Foster, Stephen \(ASPIRE\)
Hi all, i am utilising mod_proxy to serve locally held static content but to proxy any other requests to a different service. This works fine however i am having problems with the logging of requests. I have set up my logging format to pick up the client IP address from the headers as the reque

[EMAIL PROTECTED] Logging problem using mod_proxy and UsePreserveHost

2007-04-23 Thread Foster, Stephen \(ASPIRE\)
Hi all, i am utilising mod_proxy to serve locally held static content but to proxy any other requests to a different service. This works fine however i am having problems with the logging of requests. I have set up my logging format to pick up the client IP address from the headers as the reque

[EMAIL PROTECTED] logging error-notes of Apache - is it advisable?

2007-03-22 Thread Sai Jai Ganesh Gurubaran
Hi All, Recently we noticed that Apache (2.0.59) on RHEL 3 as a forward proxy stops responding for a few minutes and then recovers on its own. We have MaxRequestsPerChild to 9000 and the occurrence is random (fortunately over weeks) In the error log we get the lines for the time period where Apache

Re: [EMAIL PROTECTED] logging question

2007-03-08 Thread Dan_Mitton
How?? Please respond to users@httpd.apache.org To: users@httpd.apache.org cc: (bcc: Dan Mitton/YD/RWDOE) Subject:Re: [EMAIL PROTECTED] logging question LSN: Not Relevant User Filed as: Not a Record [EMAIL PROTECTED] wrote: > > Is it possible to log both IP addre

Re: [EMAIL PROTECTED] logging question

2007-03-08 Thread Rob Wilkerson
Take a look at this: http://httpd.apache.org/docs/1.3/mod/mod_log_config.html#customlog Looks like %a and %h might do what you're asking. On 3/8/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Is it possible to log both IP address and hostname to the apache logs? Thanks!

Re: [EMAIL PROTECTED] logging question

2007-03-08 Thread matt farey
[EMAIL PROTECTED] wrote: > > Is it possible to log both IP address and hostname to the apache logs? > > Thanks! Its a funny request, the answer is yes, but remember the fact that hostnames appear at all is due to apache having DNS resolution switched on - which is bad obviously. Also remember tha

[EMAIL PROTECTED] logging question

2007-03-08 Thread Dan_Mitton
Is it possible to log both IP address and hostname to the apache logs? Thanks!

Re: [EMAIL PROTECTED] logging the httpd answer headers

2006-10-30 Thread Joshua Slive
On 10/30/06, cristi <[EMAIL PROTECTED]> wrote: Hello all Is there any possibility of logging the answer headers ? Response headers? Yes. mod_log_config can be configured to individually log any request or response header. If you really need ALL the response headers, then I believe that requ

[EMAIL PROTECTED] logging the httpd answer headers

2006-10-30 Thread cristi
Hello all Is there any possibility of logging the answer headers ? thx cristi - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscri

Re: [EMAIL PROTECTED] Logging *everything* in access.log

2006-10-02 Thread Joshua Slive
On 10/2/06, Oliver Marshall <[EMAIL PROTECTED]> wrote: Does anyone know of a list of all the possible options of what to include in access.log ? We currently have the logfile format set to common, but I have been asked to enable logging of "*everything*". Is there a log format that will log all

[EMAIL PROTECTED] Logging *everything* in access.log

2006-10-02 Thread Oliver Marshall
Does anyone know of a list of all the possible options of what to include in access.log ? We currently have the logfile format set to common, but I have been asked to enable logging of "*everything*". Is there a log format that will log all possible options ? Olly -

Re: [EMAIL PROTECTED] logging complete http exchange.

2006-09-09 Thread Joshua Slive
On 9/9/06, Krist van Besien <[EMAIL PROTECTED]> wrote: Hello, I'm lokking for a way to make my apache server log the _complete_ http exchange. I need this for debugging web applications. A bit of background: The company where I work runs a WAP portal that is used by mobile phones. The phones r

[EMAIL PROTECTED] logging complete http exchange.

2006-09-09 Thread Krist van Besien
Hello, I'm lokking for a way to make my apache server log the _complete_ http exchange. I need this for debugging web applications. A bit of background: The company where I work runs a WAP portal that is used by mobile phones. The phones request WAP sites, and depending on what they request, th

Re: [EMAIL PROTECTED] Logging Response time in access log

2006-09-08 Thread apacheuser123
   Works now...Thanks for the help...   -Original Message- From: [EMAIL PROTECTED] To: users@httpd.apache.org Sent: Fri, 8 Sep 2006 12:48 AM Subject: Re: [EMAIL PROTECTED] Logging Response time in access log %D http://httpd.apache.org/docs/2.2/mod/mod_log_config.html#formats

Re: [EMAIL PROTECTED] Logging Response time in access log

2006-09-08 Thread Jon Snow
%D http://httpd.apache.org/docs/2.2/mod/mod_log_config.html#formats Regards, Jon On Friday 08 September 2006 05:21, [EMAIL PROTECTED] wrote: > Hi, > > Is there a way to log the time taken to process a request in milliseconds > precision ? The documentation for %T says it can only logs the

[EMAIL PROTECTED] Logging Response time in access log

2006-09-07 Thread apacheuser123
Hi, Is there a way to log the time taken to process a request in milliseconds precision ? The documentation for %T says it can only logs the time in seconds. Thanks in advance, S Check Out the new free AIM(R) Mail -- 2 GB of storage and industry-leading spam and email virus protection.

Re: [EMAIL PROTECTED] logging question

2006-08-16 Thread Joshua Slive
On 8/16/06, Farid Hamjavar <[EMAIL PROTECTED]> wrote: Apache 1.3.33 on Linux RH AS 3.0 Greetings, Is there a way to instruct Apache not to log (in its access_log) entries from a certain things? e.g. not to log entries from IP# 1.2.3.4 or from host hostname.site.org http://httpd.apache.or

[EMAIL PROTECTED] logging question

2006-08-16 Thread Farid Hamjavar
Apache 1.3.33 on Linux RH AS 3.0 Greetings, Is there a way to instruct Apache not to log (in its access_log) entries from a certain things? e.g. not to log entries from IP# 1.2.3.4 or from host hostname.site.org Thanks, Farid ---

Re: [EMAIL PROTECTED] Logging access to specific URL.

2006-07-25 Thread Joshua Slive
On 7/25/06, Krist van Besien <[EMAIL PROTECTED]> wrote: Hello, Our website is dynamic, but for demo purposes a static copy has been made (using wget) and put under docroot/demo. Now I've been asked if it is possible to have all requests to these files logged to a seperate file. How to do this? I

[EMAIL PROTECTED] Logging access to specific URL.

2006-07-25 Thread Krist van Besien
Hello, Our website is dynamic, but for demo purposes a static copy has been made (using wget) and put under docroot/demo. Now I've been asked if it is possible to have all requests to these files logged to a seperate file. How to do this? I cannot add a customlog directive to a container unfortu

Re: [EMAIL PROTECTED] logging access via Indexes

2006-06-14 Thread Joshua Slive
On 6/14/06, Mike - EMAIL IGNORED <[EMAIL PROTECTED]> wrote: On one of my directories, I have: Options -All SymLinksIfOwnerMatch Indexes The "-All" is redundant. See the documentation of the Options directive. It starts by resetting to none and then adding the listed options unless ALL the

[EMAIL PROTECTED] logging access via Indexes

2006-06-14 Thread Mike - EMAIL IGNORED
On one of my directories, I have: Options -All SymLinksIfOwnerMatch Indexes and there is a large tree accessible thereby. I see, however, that the log does not record any directory or file access utilizing the Indexes option. Is there a way to make this happen? Thanks for your help, Mike. --

Re: [EMAIL PROTECTED] Logging X-Forwaded-For

2006-06-05 Thread Garth Webb
On 6/5/06, Alexander Lazic <[EMAIL PROTECTED]> wrote: Hi, On Mon 05.06.2006 18:01, Garth Webb wrote: >Hi, I am using Apache/1.3.33 (Debian GNU/Linux) behind a proxy server >(Perlbal) which is sending the X-Forwarded-For header back with each >request. I'm trying to create a custom log format t

Re: [EMAIL PROTECTED] Logging X-Forwaded-For

2006-06-05 Thread Alexander Lazic
Hi, On Mon 05.06.2006 18:01, Garth Webb wrote: Hi, I am using Apache/1.3.33 (Debian GNU/Linux) behind a proxy server (Perlbal) which is sending the X-Forwarded-For header back with each request. I'm trying to create a custom log format that looks like the stanard 'combined' format that most lo

[EMAIL PROTECTED] Logging X-Forwaded-For

2006-06-05 Thread Garth Webb
Hi, I am using Apache/1.3.33 (Debian GNU/Linux) behind a proxy server (Perlbal) which is sending the X-Forwarded-For header back with each request. I'm trying to create a custom log format that looks like the stanard 'combined' format that most log parsers use. What I have is: LogFormat "%{HTTP

RE: [EMAIL PROTECTED] Logging per directory

2006-04-04 Thread john
Subject: Re: [EMAIL PROTECTED] Logging per directory On 4/4/06, Boyle Owen <[EMAIL PROTECTED]> wrote: > > -Original Message- > > From: john [mailto:[EMAIL PROTECTED] > > Sent: Dienstag, 4. April 2006 12:30 > > To: users@httpd.apache.org > > Subject: [EM

Re: [EMAIL PROTECTED] Logging per directory

2006-04-04 Thread Joshua Slive
On 4/4/06, Boyle Owen <[EMAIL PROTECTED]> wrote: > > -Original Message- > > From: john [mailto:[EMAIL PROTECTED] > > Sent: Dienstag, 4. April 2006 12:30 > > To: users@httpd.apache.org > > Subject: [EMAIL PROTECTED] Logging per directory > > &g

RE: [EMAIL PROTECTED] Logging per directory

2006-04-04 Thread Boyle Owen
> -Original Message- > From: john [mailto:[EMAIL PROTECTED] > Sent: Dienstag, 4. April 2006 12:30 > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Logging per directory > > Is any way to log accesses per directory ? AFAIK, no. TransferLog has "Context:

[EMAIL PROTECTED] Logging per directory

2006-04-04 Thread john
Is any way to log accesses per directory ?

RE: [EMAIL PROTECTED] Logging of number of HTTP requests arriving at web server

2006-03-30 Thread Boyle Owen
> -Original Message- > From: Perminder Singh Vohra [mailto:[EMAIL PROTECTED] > Sent: Donnerstag, 30. März 2006 08:34 > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Logging of number of HTTP requests > arriving at web server > > Hi, > > We woul

[EMAIL PROTECTED] Logging of number of HTTP requests arriving at web server

2006-03-29 Thread Perminder Singh Vohra
Hi,  We would like to monitor using Apache logs number of HTTP requests made to the web server. We are using Apache 2.0.54 web server on Windows and UNIX alike.   Is there any directive available in Apache using which we can achieve the same?   Thanks!!   Perminder     *

Re: [EMAIL PROTECTED] Logging POST requests for debugging

2006-02-07 Thread Joshua Slive
On 2/7/06, Bgs <[EMAIL PROTECTED]> wrote: > > Greetings, > > Is there a way to log the content of POST requets with Apache? > > We have problems with some external POSTs (don't have access to external > logs), but cannot find the problem. (The outside POSTer is not very > cooperating... :/ ). Ye

[EMAIL PROTECTED] Logging POST requests for debugging

2006-02-07 Thread Bgs
Greetings, Is there a way to log the content of POST requets with Apache? We have problems with some external POSTs (don't have access to external logs), but cannot find the problem. (The outside POSTer is not very cooperating... :/ ). Thanks in advance Bgs --

[EMAIL PROTECTED] Logging Source Ports

2005-10-20 Thread Jon Snow
I use apache for both forward and reverse proxying. What I would like to do is tie the inbound connection with the outbound so I can trace the session end to end. I figured this could easily be done by logging the source port of the inbound and outbound connections allowing me to trace it throu

[EMAIL PROTECTED] logging sub requests

2005-08-04 Thread Patrick Ward
Does anyone know of a way, preferably with mod_log_config, to log sub requests, i.e. SSI, or PHP included files requested? - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/u