|
|
Visitor Hit Counter Script? - to find total number of visitor to the site. | ||
Discussion by abartar with 18 Replies.
Last Update: August 29, 2011, 5:06 pm ( View Rated (4) ) | |||
![]() |
|
|
Thanks.
Of course, if (and when) you get hosted here at Astahost, you will have enough information in the cPanel. But until then, I would advise you to use www.statcounter.com.
QUOTE (pyost)
You might consider using a web site that provides this service. Not only are they useful and easy to set up, but they also give you detailed information on your visitors.
Of course, if (and when) you get hosted here at Astahost, you will have enough information in the cPanel. But until then, I would advise you to use www.statcounter.com.
Link: view Post: 85423
thx bro .. i think i will be a pro With this Forums really
Coming back to your question I will surely reccomend you Google Analytics, it is one of the best piece of script around to check your website OR page stats.It is completely free.
Visit http://analytics.google.com for acquiring more information about this service.I think you need a Google Account for using this, but hey that is easily available.
Good Luck
---
knight17
QUOTE
Counter
You can create a counter to count how many visitors have been to your page.
If you prefer an independant counter site, have a look at http://www.statcounter.com/ it's free and it's rather complete.
QUOTE (yordan)
And, of course, if you are hosted at astahost, don't forget the astahost counter. You reach it from your cpanel control, in the "cgi scripts" section" , it annouces what it does :
If you prefer an independant counter site, have a look at http://www.statcounter.com/ it's free and it's rather complete.
Link: view Post: 97686
Cool. thanks for the info.
I was about to add a counter to my page from another website but since you pointed this out,
I'll use that.
Thanks.
eFX
[N]F
QUOTE (nightfox)
Yeah, Stat Counter is great for being free. I use it. It's much better than "add free stats" and several others where they actually put ads on your counter. Stat Counter also offers FREE invisible counters as well. It's a great service, highly recommended!
[N]F
Link: view Post: 97702
Yes, I also use the invisible counters, because they show you where people go when they visit your site.
web stats provides the traffic of web pages and blogs, a variety of statistics and analytics to help webmasters analyse their traffic. Web Stats provides a wide range of choices on what to display on your Webpage or blog. It's quick and easy to join Web Stats with our 60 seconds sign-up.
You may want also to check for Gostats free analytics & website hit counter.
It's available as both free and payed service (with more features) from http://gostats.Com
I think webanalizer is good one.
you can go to any 3rd party software that you want.
I'm moving away from services like google because they're getting too much data about our server, hosted files and interaction by using such scripts. I'm not going to give my data so openly to search engine like that. Anything is better than evil google analytics, me thinks.
So far these are the tested analytics which perform much better than google analytics for me.
Piwik
reinvigorate (snoop)
icerocket tracker
histats
mint
These analytics services can replace google analytics and so are worth to use for those who operate affiliate sites or sites with google adsense ads.
The reason analytics shouldnt be used is because if you're using affiliate marketing site then google can penalize you. Most of the backlinks are easily checked by google and that is one reason we should avoid analytics for affiliate sites. For adsense sites, you can use it to track the adsense data. One more reason you should not use analytics is because of lack of live features which you can only get with other analytics sites like piwik, w3counter etc. So i suggest going for these analytics if you're into affiliate marketing. My experience with W3counter is good and i can suggest it to my friends who are into affiliate marketing. Surely they'll benefit from this feature.
If you want less flashy interface with complete stats and details then icerocket tracker is one good analytics to track or to use. It's similar to w3counter but much easy and quick to load on low internet connection speed.
I checked open web analytics when i lost icerocket on one blog. Open web analytics offers you a better package of analytics similar to google analytics with features inside your wordpress blog. You can also have standalone features and sevrices but if you're running wordpress then they do offer entier package under plugins. So you just have to use it under your wordpress dashboard. Just download the zip file and upload it to wordpress plugins folder. Then there will be plugin activation inside your wordpress blog. You'll be able to update and use open web analytics from the wordpress dashboard itself. I don't suggest this method for those who have multiple installation under same hosting account. In such case better to get single site hosted somewhere and from there you can always get the open web analytics stats. Few more points about this software is that it is totally free and open source. You get the source and do anything with it within open source license. It is free and regularly updated. Some of the features mimics google analytics type reports and stats. So in short it is one good stat package to have for those who want alternative to analytics service like google and icerocket.
Because google analytics is used so widely, almost every page has it and it can really trace from where and where you browse if it would really want to and you give so much information to it.
Usually a host provides something like awstats, which I always try to look at, but services like google analytics and others offering similar services, I think it's best if there would be a lot of interdependent services like that and not one which all would be using, it would be much better for all the users
Sometimes where are problems with these kind of services when they trace the site with or without www in the url, which is sometimes annoying.
That aside, if you can't trust the server logs for some reason. Or want someone to show your stats then consider using histats.com. Note that it is "histats and not hitstats". Both are different and have totally different way to crawl and manage stats on server. You don't have to use google analytics to know your stats. As i said earlier if you're into affiliate marketing consider using server logs like awstats or webtemp or webalizer. If not that then histats, icerocket and some other stat software which work on web are enough for you to keep track of traffic. I may review any other new analytics script in the future in this thread if i get some time. :-)
For a simple hit counter that increments only when a new IP visits the site then get a hosting account with a mysql database (like astahost for instance), create the following table:
CODE
CREATE TABLE `hitcount` {`id` int(255) NOT NULL auto_increment,
`ip` int(15) NOT NULL,
PRIMARY `id`
}
The on your home page where you want to place the counter insert the following php script:
CODE
<?php$openhitcount = mysql_connect('Your database connection details go here');
mysql_select_db('Your database name goes here');
if (mysql_num_rows(mysql_query("SELECT id FROM hitcount WHERE ip=".mysql_real_escape_string($_SESSION['server']['REMOTE_HOST']))) == 0){
mysql_query("INSERT INTO hitcount (ip) VALUES (".mysql_real_escape_string($_SESSION['server']['REMOTE_HOST']).")");
}
echo "We've had ".number_format(mysql_num_rows(mysql_query("SELECT id FROM hitcount")))." visitors";
mysql_close($openhitcount);
?>
or something similar to that anyway, I've had a lot to drink so my php functions may not be spelled correctly or my code format may be out of whack, either way that's a very simple, very secure and very effective hit counter...I think...lol
QUOTE
I've had a lot to drink so my php functions may not be spelled correctlyYou lucky man, my sql queries have a lot of syntax errors without driniking any beer!
Similar Topics:
How To Create A PHP Based Hit Count...
Browser Quaker Script Shock Your ...
How To Fix Your Site From A Google ...
How To Plan A Graphic (9)
|
(1) Know Any Free Cool Birthday Mms With Sound? Going to send this to a girl.....
|
HOME 






