View previous topic :: View next topic |
Author |
Message |
chance -
Joined: 04 Jan 2003 Posts: 27 Location: everett, wa
|
Posted: Wed Mar 05, 2003 5:18 am Post subject: Getting "Head" |
|
|
66.156.111.181 - - [04/Mar/2003:16:48:59 +1133] "HEAD / HTTP/1.0" 200 0 "" "Mozilla/3.0 (compatible)"
Can someone tell me what the "HEAD" means in the above access log entry? Is it something to worry about? This is not the first time the HEAD entry has appeared. thanx |
|
Back to top |
|
 |
Vader_ -
Joined: 02 Mar 2003 Posts: 26
|
Posted: Wed Mar 05, 2003 8:29 pm Post subject: Re: Just stopped working.... |
|
|
Hi there!
Although I am not 100% sure about what it is exactly 9that's bcz i do not know waht kind og log are you refering to), it probably is a misread "<HAED>" section of an HTML page.
It is nothing harmful. Just a run-time error of the script app or whatever generated that log...
However, if this appears again several times, mail me or post to my forum at: http://www.devilnet-on-line.org to see the problem again in detail... _________________ Simple...fast...free..... |
|
Back to top |
|
 |
chance -
Joined: 04 Jan 2003 Posts: 27 Location: everett, wa
|
Posted: Wed Mar 05, 2003 11:02 pm Post subject: |
|
|
The log is the Abyss Server Access Log. Head replaces the Get command in the log entries before and following the entry in question.
65.57.59.201 - - [04/Mar/2003:16:39:41 +1133] "GET /A-cs_pgs_rebuild/PPO_Rev/PPO_1.htm HTTP/1.1" 200 223395 "http://64.4.16.250/cgi-bin/linkrd?_lang=EN&lah=24a54d885119791d7374c5d69551d1f8&lat=1046824962&hm___action=http%3a%2f%2fchancefac%2enet%2fA%2dcs_pgs_rebuild%2fPPO_Rev%2fPPO_1%2ehtm" "Mozilla/4.0 (compatible; MSIE 5.0; Windows 95; DigExt; JUNO)"
66.156.111.181 - - [04/Mar/2003:16:48:59 +1133] "HEAD / HTTP/1.0" 200 0 "" "Mozilla/3.0 (compatible)"
209.249.67.138 - - [04/Mar/2003:16:50:05 +1133] "GET /A-cs_pgs_rebuild/FAG-TrailTeams.htm HTTP/1.1" 200 68056 "" "Mozilla/4.0 compatible ZyBorg/1.0 (wn.zyborg@looksmart.net; http://www.WISEnutbot.com)"
the 200 code would indicate to me that whatever action is requested is is taking place.
OS is w2k pro |
|
Back to top |
|
 |
aprelium -
Joined: 22 Mar 2002 Posts: 6800
|
Posted: Wed Mar 05, 2003 11:42 pm Post subject: |
|
|
HEAD are GET are verbs (or commands) that HTTP clients (such as browser) can send to web servers.
GET is the most commonly used verb. It means "send me the file". When a server receives such a request, it sends some headers contaning useful information about the file (such as its size, its last modification time, the name of the sever). The headers are followed by the file contents.
HEAD works almost as GET. The only difference is that it does not send file contents. It only sends the headers.
HEAD is useful for browsers to check the presence of a file without downloading it. It can be also used to verify that there is no new version of a file (when updating a cached version), etc... _________________ Support Team
Aprelium - http://www.aprelium.com |
|
Back to top |
|
 |
chance -
Joined: 04 Jan 2003 Posts: 27 Location: everett, wa
|
Posted: Thu Mar 06, 2003 12:12 am Post subject: |
|
|
Thank You
Good news is always a pleasant surprise |
|
Back to top |
|
 |
|