what should i do inorder for adsense not to count my visit to my site?
i've read about this before but can't remember where.
what should i do inorder for adsense not to count my visit to my site?
i've read about this before but can't remember where.
Impressions do matter. Once is a while a get a few cents for impressions.
As long as you don't inflate the impressions you are o.k.
Google AdSense Program Policies
AdSense counts everything but they have their way of placing different values on different clicks, sometimes with drastic differences.
block your ads using something like Adblock Plus.
https://addons.mozilla.org/en-US/firefox/addon/1865
Premium Directory :: PR4Submit Your Link
Directory Grow :: PR2 Bidding directoryOne LD :: PR1 Directory
You could use php to not show the ads when you visit your site.
AusPHP Code:Put this at the top of the file
<?php
$YourIP = "123.123.123.123";
?>
put there wherever you want your google code to show (or not)
<?php
if (ereg($YourIP, $_SERVER['REMOTE_ADDR'])) {
echo "";
} else {
echo "Google ad code";
}
?>
Bookmarks