Hits verses Accesses
This is a very important distinction between Requests and Accesses. When a page is requested from the server, it may contain, for example, four images. When this occurs, the access log will record five "hits" - one for the HTML Web page and four for the four images. However, when you wish to track your statistics, you will typically not be interested in the number of images that are requested. In this case, you will wish to know the accesses number.
Also a framed website can increase the accesses number as you can load several HTML pages for each frame. There is a way to reject the master frame pages in this package (page which define other framed pages).
Hosts versus visitors
The Web server typically does not know how many users come to your web site. Here's why: After the Web server sends you a Web page of information, the server computer typically breaks the connection with you. Then when you request a second Web page from that computer, you establish another quick connection, in which it again sends you a web page and breaks the connection. Unless there is special software on the Web server (e.g., cgi script or cookies), the log files cannot know for sure that it is the same person.
However there is a way to estimate the visitor number from the log file assuming some basic rules. Check the session section to know more. The number of different hosts is a first guess and should be use carefully (proxy tends to decrease this number but dhcp protocol (used by most internet providers) tends to increase this number !).
|