Re: [us...@httpd] Upgrading from Apache1 1.x to 2.1.14

2010-02-18 Thread Daniel Reinhardt
-- From: "Paul McFerrin" Sent: 18 February, 2010 23:21 To: Subject: [us...@httpd] Upgrading from Apache1 1.x to 2.1.14 I have a couple of issues associated with upgrade to Apache 2.1.14. First, I changed: from:DefaultType text/plain to:

Re: [us...@httpd] Re: Upgrading from Apache1 1.x to 2.1.14

2010-02-18 Thread Nick Kew
On 19 Feb 2010, at 06:07, Paul McFerrin wrote > htttp://genealogy.mcferrin.org == Page display's normally > http://genealogy.mcferrin.org/barrows.htm == Page displays "Object not found" > message, but is there!! > http://genealogy.mcferrin.org/McFerrin_CD == Directory containing > "index.html",

[us...@httpd] Re: Upgrading from Apache1 1.x to 2.1.14

2010-02-18 Thread Paul McFerrin
This particular version of Apache is part of the XAMPP Package which is a COMPLETE Package containing: Apache, MySQL, Filezilla, Mercury, PHP, & Tomcat; all in one package for the PC. I have a lot to lose if I can't get Apache working to my liking. Something is missing in the httpd.conf file

Re: [us...@httpd] RewriteCond question

2010-02-18 Thread James Smallacombe
On Thu, 18 Feb 2010, John Oliver wrote: On Thu, Feb 18, 2010 at 06:14:33PM -0500, James Smallacombe wrote: On Thu, 18 Feb 2010, John Oliver wrote: I'm dealing with a site that is accessed via https://domain.gov The certificate is for "domain.gov" I akready have a working rule to catch http:

Re: [us...@httpd] RewriteCond question

2010-02-18 Thread John Oliver
On Thu, Feb 18, 2010 at 06:14:33PM -0500, James Smallacombe wrote: > On Thu, 18 Feb 2010, John Oliver wrote: > > >I'm dealing with a site that is accessed via https://domain.gov The > >certificate is for "domain.gov" I akready have a working rule to catch > >http://domain.gov/ and rewrite to htt

[us...@httpd] Upgrading from Apache1 1.x to 2.1.14

2010-02-18 Thread Paul McFerrin
I have a couple of issues associated with upgrade to Apache 2.1.14. First, I changed: from:DefaultType text/plain to:DefaultType application/octet-stream In httpd.conf file. Now, any and all graphics to not render in the Browser. Next, the following text will not appear. It ap

Re: [us...@httpd] RewriteCond question

2010-02-18 Thread James Smallacombe
On Thu, 18 Feb 2010, John Oliver wrote: I'm dealing with a site that is accessed via https://domain.gov The certificate is for "domain.gov" I akready have a working rule to catch http://domain.gov/ and rewrite to https://domain.gov/ I also got http://www.domain.gov/ caught and rewritten with:

[us...@httpd] RewriteCond question

2010-02-18 Thread John Oliver
I'm dealing with a site that is accessed via https://domain.gov The certificate is for "domain.gov" I akready have a working rule to catch http://domain.gov/ and rewrite to https://domain.gov/ I also got http://www.domain.gov/ caught and rewritten with: RewriteCond %{http_host} ^www\.domain\.go

Re: [us...@httpd] Custom Log Format -> Adding milliseconds to timestamp -> %{format}t

2010-02-18 Thread Eric Covener
On Thu, Feb 18, 2010 at 4:01 PM, Daniel Reinhardt wrote: >> This thread is specifically about millisecond granularity in the access >> log. > Then he or she will need to write something up as Syslog doesn't support > milliseconds in time stamping.  See this IETF: > http://www.ietf.org/rfc/rfc316

Re: [us...@httpd] Custom Log Format -> Adding milliseconds to timestamp -> %{format}t

2010-02-18 Thread Daniel Reinhardt
-- From: "Eric Covener" Sent: 18 February, 2010 20:26 To: Subject: Re: [us...@httpd] Custom Log Format -> Adding milliseconds to timestamp -> %{format}t On Thu, Feb 18, 2010 at 3:20 PM, Daniel Reinhardt wrote: Has anyone figured out how to

Re: [us...@httpd] Custom Log Format -> Adding milliseconds to timestamp -> %{format}t

2010-02-18 Thread Eric Covener
On Thu, Feb 18, 2010 at 3:20 PM, Daniel Reinhardt wrote: >> Has anyone figured out how to add milliseconds to the date and time the >> request was made for logging?  Something like the below Common Log Format >> where the ":1234" represents microseconds: > Actually the log file does show the tim

Re: [us...@httpd] Custom Log Format -> Adding milliseconds to timestamp -> %{format}t

2010-02-18 Thread Mike Cardwell
On 18/02/2010 20:20, Daniel Reinhardt wrote: > Actually the log file does show the time and date of the request being > made: That's not what he's asking for. He wants to know how to add more accuracy to the time by getting it to include milliseconds. The clue is in the subject line. -- Mike Ca

Re: [us...@httpd] Custom Log Format -> Adding milliseconds to timestamp -> %{format}t

2010-02-18 Thread Daniel Reinhardt
-- From: "Geoff Millikan" Sent: 18 February, 2010 17:15 To: Subject: [us...@httpd] Custom Log Format -> Adding milliseconds to timestamp -> %{format}t Dear List, Has anyone figured out how to add milliseconds to the date and time the request

Re: [us...@httpd] Apache 1.3 OS X 10.4 help

2010-02-18 Thread Daniel Reinhardt
-- From: "Rupert Reid" Sent: 17 February, 2010 16:04 To: Subject: [us...@httpd] Apache 1.3 OS X 10.4 help Hello, I am new to this but hope that you can help me. I have 2 virtual domain websites published at http://80.189.101.120/ isinglive

Re: [us...@httpd] Disable QOS driver on Win 2008

2010-02-18 Thread Jonathan Zuckerman
MY ADVICE IS TO STOP-USING WINDOWS HWAA In seriousness, after a brief google search it seems that QoS is something that windows networks use to prioritize packet delivery, I can see why this might have deleterious effects on a web-server. I found these instructions for disabling it: http://forum

RE: [us...@httpd] Custom Log Format -> Adding milliseconds to timestamp -> %{format}t

2010-02-18 Thread Geoff Millikan
Dan, Yes, I suppose adding milliseconds to the request header using mod_headers with a custom header name like "Milliseconds" would work (example below). It would have to be a custom header because it appears that milliseconds cannot be appended to any "normal" date time fields since the HTTP 1.1

RE: [us...@httpd] Custom Log Format -> Adding milliseconds to timestamp -> %{format}t

2010-02-18 Thread Geoff Millikan
Using %{UNIQUE_ID}e from mod_unique_id is a *great* suggestion if our interest was merely identifying each log line uniquely. However the initial question is focused more on the sequence and order of the requests. Thus, I believe a time-based solution is what we're after. This isn't a Linux fo

Re: [us...@httpd] Custom Log Format -> Adding milliseconds to timestamp -> %{format}t

2010-02-18 Thread Dan Poirier
Maybe use mod_headers to add the time in microseconds to a request header, then log that? - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To u

Re: [us...@httpd] Custom Log Format -> Adding milliseconds to timestamp -> %{format}t

2010-02-18 Thread Tom Evans
On Thu, Feb 18, 2010 at 5:15 PM, Geoff Millikan wrote: > Dear List, > > Has anyone figured out how to add milliseconds to the date and time the > request was made for logging?  Something like the below Common Log Format > where the ":1234" represents microseconds: > > 127.0.0.1 - - [18/Feb/2010:17

[us...@httpd] Custom Log Format -> Adding milliseconds to timestamp -> %{format}t

2010-02-18 Thread Geoff Millikan
Dear List, Has anyone figured out how to add milliseconds to the date and time the request was made for logging? Something like the below Common Log Format where the ":1234" represents microseconds: 127.0.0.1 - - [18/Feb/2010:17:02:37:1234 +] "GET /favicon.ico HTTP/1.1" 200 145 "-" "Mozilla/

Re: [us...@httpd] Apache 1.3 OS X 10.4 help

2010-02-18 Thread Tom Evans
On Wed, Feb 17, 2010 at 4:04 PM, Rupert Reid wrote: > Hello, > > > > I am new to this but hope that you can help me. > > > I have 2 virtual domain websites published at > http://80.189.101.120/isinglive/ and http://80.189.101.120/cantoenvivo/ > respectively. > > The following domains: http://ising

[us...@httpd] Disable QOS driver on Win 2008

2010-02-18 Thread Bill Gudgeon
Hi, Very new to Apache, just starting to look at it today actually. Have downloaded 2.2.14 and installed to a freshly installed Windows 2008 Standard server. All OK thus far. "It works" message came up. I noted in the documentation the suggestion to disable the QOS network driver but am unsur