apache Logging output changed?

2005-06-21 Thread Noah
apache+mod_ssl-1.3.33+2.8.22
FreeBSD-4.11R3

This is really important for us to fix so I am asking again.

so I upgraded apache 1.3.33 from /usr/ports some about a month ago  and around
that time I stopped seeing POST log messages for my perl scripts ending up in
my server's access logs.  any clues why this is no longer being logged.  is
there some log granualrity configuration that is no longer default?

these POST messages stopped being logged around the time I upgraded.

--- snip ---

647.818.543.973 - - [14/Apr/2005:12:10:00 -0700] POST /Fakename.pl HTTP/1.1
405 323 http://www.fakedomainname.com/html/order.test.html; Mozilla/5.0
(Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0
678.9188.843.973 - - [14/Apr/2005:14:02:10 -0700] POST /Fakename.pl HTTP/1.1
200 1974 http://www.fakedomainname.com.com/html/order.test.html; Mozilla/5.0
(Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0

--- snip ---


clues please?

cheers,

Noha

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache Logging output changed?

2005-06-21 Thread Abu Khaled
On 6/21/05, Noah [EMAIL PROTECTED] wrote:
 apache+mod_ssl-1.3.33+2.8.22
 FreeBSD-4.11R3
 
 This is really important for us to fix so I am asking again.
 
 so I upgraded apache 1.3.33 from /usr/ports some about a month ago  and around
 that time I stopped seeing POST log messages for my perl scripts ending up in
 my server's access logs.  any clues why this is no longer being logged.  is
 there some log granualrity configuration that is no longer default?
 
 these POST messages stopped being logged around the time I upgraded.
 
 --- snip ---
 
 647.818.543.973 - - [14/Apr/2005:12:10:00 -0700] POST /Fakename.pl HTTP/1.1
 405 323 http://www.fakedomainname.com/html/order.test.html; Mozilla/5.0
 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.5) Gecko/20041107 
 Firefox/1.0
 678.9188.843.973 - - [14/Apr/2005:14:02:10 -0700] POST /Fakename.pl HTTP/1.1
 200 1974 http://www.fakedomainname.com.com/html/order.test.html; Mozilla/5.0
 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.5) Gecko/20041107 
 Firefox/1.0
 
 --- snip ---
 
 
 clues please?
 

What did you configure for the directive LogFormat/CustomLog?

-- 
Kind regards
Abu Khaled
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


apache Logging output changed?

2005-06-20 Thread Noah

I know this off topic but the apache users mail list is slow in response to 
this question.  Anybody here 
can help me please?

apache+mod_ssl-1.3.33+2.8.22
FreeBSD-4.11R3


so I build apache 1.3.33 some about a month ago  and around that time I stopped 
seeing POST log 
messages for my perl scripts ending up in my server's access logs.  any clues 
why this is no longer 
being logged.  is there some log granualrity configuration that is no longer 
default?


clues please?

cheers,

Noha

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


apache Logging output changed?

2005-06-20 Thread Noah
apache+mod_ssl-1.3.33+2.8.22
FreeBSD-4.11R3


so I upgraded apache 1.3.33 from /usr/ports some about a month ago  and around
that time I stopped seeing POST log messages for my perl scripts ending up in
my server's access logs.  any clues why this is no longer being logged.  is
there some log granualrity configuration that is no longer default?

these POST messages stopped being logged around the time I upgraded.

--- snip ---

647.818.543.973 - - [14/Apr/2005:12:10:00 -0700] POST /Fakename.pl HTTP/1.1
405 323 http://www.fakedomainname.com/html/order.test.html; Mozilla/5.0
(Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0
678.9188.843.973 - - [14/Apr/2005:14:02:10 -0700] POST /Fakename.pl HTTP/1.1
200 1974 http://www.fakedomainname.com.com/html/order.test.html; Mozilla/5.0
(Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0

--- snip ---


clues please?

cheers,

Noha

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Apache logging?

2005-06-15 Thread Brian McCann
Anyone here know how to get Apache to log in GMT when the system clock
is in local time?  I can't imagine this being impossible...but I
can't seam to find it anywhere.

Thanks!
--Brian
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Apache logging?

2005-06-15 Thread Jeff Wirth
 Anyone here know how to get Apache to log in GMT when the system clock
 is in local time?  I can't imagine this being impossible...but I

you didn't mention what version of apache...

1.3.* - http://httpd.apache.org/docs/logs.html#accesslog

[10/Oct/2000:13:55:36 -0700]  (%t)
The time that the server finished processing the request. The format is:

[day/month/year:hour:minute:second zone]
day = 2*digit
month = 3*letter
year = 4*digit
hour = 2*digit
minute = 2*digit
second = 2*digit
zone = (`+' | `-') 4*digit 

It is possible to have the time displayed in another format by
specifying %{format}t in the log format string, where format is as in
strftime(3) from the C standard library.

-jeff
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Apache logging?

2005-06-15 Thread Brian McCann
On 6/15/05, Jeff Wirth [EMAIL PROTECTED] wrote:
  Anyone here know how to get Apache to log in GMT when the system clock
  is in local time?  I can't imagine this being impossible...but I
 
 you didn't mention what version of apache...
 
 1.3.* - http://httpd.apache.org/docs/logs.html#accesslog
 
 [10/Oct/2000:13:55:36 -0700]  (%t)
 The time that the server finished processing the request. The format is:
 
 [day/month/year:hour:minute:second zone]
 day = 2*digit
 month = 3*letter
 year = 4*digit
 hour = 2*digit
 minute = 2*digit
 second = 2*digit
 zone = (`+' | `-') 4*digit
 
 It is possible to have the time displayed in another format by
 specifying %{format}t in the log format string, where format is as in
 strftime(3) from the C standard library.
 
 -jeff
 

Thanks Jeff!  Just as I got your message I found a work around that
worked for me.  I set the TZ environment variable in the RC script to
me GMT and that did the trick.

Thanks!
--Brian
-- 
_-=-_-=-_-=-_-=-_-=-_-=-_-=-_-=-_-=-_-=-_-=-_
Brian McCann
Systems  Network Administrator, K12USA

I don't have to take this abuse from you -- I've got hundreds of
people waiting to abuse me.
-- Bill Murray, Ghostbusters
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]