Quote:
Originally posted by DaveTodd
Hope gives good advice, listen to him.
|
Hope is a female, not a male.
Quote:
|
i would liek to know what kind of info i can get in log file and how to read them?
|
You can find out EVERYTHING that happens on your site in your web logs. When I say everything, I mean everything. If a spider or visitor hits your site it is there. If you have a server error, it is there.
Open a log file in WordPad or equivalent. There are several log file formats, but they all have the same basic information. Below is an entry into a log file:
24.130.85.7 - - [01/Sep/2002:06:08:29 -0500] "GET /glossary.html HTTP/1.1" 200 49973 "http://www.google.com/search?num=100&hl=en&lr=&ie=ISO-8859-1&safe=off&q=SERP+seo" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"
24.130.85.7 - IP address of visitor
[01/Sep/2002:06:08:29 -0500] - Date and Time of visit
GET - Action taken (get or post are the most common)
/glossary.html - File that was requested from server
HTTP/1.1 - Protocol (http/1.0 or http/1.1)
200 - server status (200 is a successful transer of data, 404 would be file not on server)
49973 - File size
http://www.google.com/search?num=100&hl=en&lr=&ie=ISO-8859-1&safe=off&q=SERP+seo - referral (where user came from, in this case google on the search term "SERP + seo"
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) - Browser and OS info (microsoft IE version 6.0 on a Windows NT5.1 (win 2000) machine.
This is another entry:
64.68.82.55 - - [31/Aug/2002:23:10:04 -0500] "GET /glossary.html HTTP/1.0" 200 49973 "-" "Googlebot/2.1 (+ http://www.googlebot.com/bot.html)"
This shows that googlebot stopped by to spider the page /glossary.html.
Does this make sense?
|