View Full Version : Page Views Vs. Page Visitors
overclocker23
July 11th, 2003, 03:33 PM
Hey,
I was looking at my server logs/ web stats and it only showed the amount of visitors I had. I would like to know how many page views I get. Is page views and page visitors the same thing? Thanks. And look at the attached file to see what I mean.
DDD
July 12th, 2003, 12:28 AM
is this a windows server?
overclocker23
July 12th, 2003, 12:52 AM
Nope. It's a linux server.
DDD
July 12th, 2003, 01:01 AM
nevermind I cannot help ya with that good luck
ahmed
July 12th, 2003, 01:08 AM
if your server supports php, use this code
<?php
$handle = fopen("counter.txt", "r");
$contents = fgets($handle, 4096);
$temp = sprintf("%d", $contents);
$temp++;
fclose($handle);
$handle = fopen("counter.txt", "w");
fputs($handle, "$temp");
fclose($handle);
?>this create a file with the name 'counter.txt' that contains the number of page views..
overclocker23
July 12th, 2003, 01:22 AM
Here's the thing, by looking at the website stats in the picture above, you can see that there are well over 4000 visitors but for some reason my host is showing me that I have only spent a little over 15MB of bandwidth. What is wrong with that? I update a lot so therefore I get quite alot of FTP traffic and I don't know what's happening. Can anyone tell me what's going on? Thanks.
ahmed
July 12th, 2003, 01:23 AM
try contacting your host
overclocker23
July 12th, 2003, 01:56 AM
I contacted my host but they are stupid. They keep telling me that I have only used 15MB of bandwidth. But i guess once the site gets over the bandwidth amount they will just send me a huge bill.
I am certain that I did get over 4000 visitors since I am also using nedstat and other utilities and they are giving me the exact same stats.
Oh well.....
Jubba
July 12th, 2003, 02:55 AM
15mb is a lot of bandwidth to use. and 4000 visitors doesn't necessarily mean unique visitors, so many of them may have your images and stuff cached, so they don't re-download it every time they enter your site...
overclocker23
July 12th, 2003, 08:41 AM
I have 30GB of bandwidth to burn. I guess it's gonna take some time before I can do that. Thanks jubba and everyone for your help.
DDD
July 12th, 2003, 11:26 AM
If you exhaust 30gb you must have some site....like a msn or hotmail type of site
overclocker23
July 12th, 2003, 12:21 PM
I believe msn uses more than 30GB site. Kirupa.com, is using more than 30GB in my opinion. MSN/Hotmail are running on dedicated servers and mine is not.
Jubba
July 12th, 2003, 12:29 PM
his point is 30gb is a lot of bandwidth and it will be a long time before your site hits that mark.
remember, most of your content is text....
overclocker23
July 12th, 2003, 12:31 PM
yes, i know. I got his point. Thanks for helping me out.
abzoid
July 12th, 2003, 12:36 PM
Don't mind me, just doing a little math aloud.
Lemme see now... 2,298,805 KB divide by 4696 visits equals 489.5 KB per visit.
30 GB per month divide by 489.5 KB per visit equals 64,264 visitors per month.
overclocker23
July 12th, 2003, 12:43 PM
thanks abzoid
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.