Help me not track my visitors
March 24, 2008 5:18 AM   Subscribe

I'm looking for a website visitor tracking service that will allow me to not track users referred from certain domains. Or, one that will allow me to not show those users when I'm viewing the stats.

At the moment, I have a free Statcounter account, with the detailed info from the past 500 visitors. Someone has posted my site to StumbleUpon, which is great, but I've had nearly 300 visitors from StumbleUpon so far today, which is eating up my log really quickly.

I really like being able to see where people are coming from, but with results like I'm getting at the moment, it's hard to see. Is there a service, like Statcounter, that will either allow me to not track users referred from a given website, or one that will allow me to filter a given website from showing up in the log when I view it?

I don't mind paying a small amount per month/year to get this functionality, but free is even better.
posted by Rabulah to Computers & Internet (4 answers total) 1 user marked this as a favorite
 
I think that Google Analytics does this quite well.

It's free and doesn't have any arbitrary limits.

To do what you want in it go to Traffic Sources->Referring Sites and then in the Find Source search either select containing or excluding based on what you are looking for.
posted by mincus at 5:24 AM on March 24, 2008


I think a downloadable software called Rapid SMTP might do that for you also, if I'm understanding you correctly.
posted by CollectiveMind at 5:57 AM on March 24, 2008


Um, RapidSMTP bills itself as "high-performance email marketing software." One might read that as software used primarily for the dissemination of spam.

Rabulah: Is this for your self-hosted Wordpress blog? If so, then the Wordpress Stats plugin might help you to see all of your referrers. I'm not familiar with Statcounter... are you able to download raw log files with that service, or are you restricted to viewing the data through their interface?
posted by mumkin at 8:22 AM on March 24, 2008


If you want a quick hack to exclude a few specific referring sites, just insert the Statcounter markup using server-side scripting that checks the referer, e.g. in PHP it might be something like:
if ( (!array_key_exists('HTTP_REFERER', $_SERVER)) || (strpos($_SERVER['HTTP_REFERER'], 'http://stumbleupon.com') !== 0) ) echo 'tracking markup';
posted by malevolent at 9:45 AM on March 24, 2008


« Older Fast user switching a pain with a Mac Mini   |   Why are my wisdom teeth brown? Newer »
This thread is closed to new comments.