Forum Moderators: martinibuster
Does anyone have anything that has worked well in this format? Is there any way I can tell what percentage of my current AdSense ads are PSA's to get an idea of available impressions?
Thanks.
To find out how many PSA's there were, about, I took a week where my alternate ad script did nothing but log the page. Something like:
#!/usr/bin/perl
print "Content-type: text/html\n\n";
open(LOG, ">>adsenselog.txt");
print LOG localtime() . "$ENV{'HTTP_REFERER'} $ENV{'QUERY_STRING'}\n";
close(LOG);
exit();
That was pretty much the whole script, although since I used it on other sites, and you don't always get the referer, I called it as "adsensetest.cgi?SiteName" to get which site it was running on. Then I pretty much just looked at how many pages showed up in that log, which pages they were, etc.
How's it working? Hard to tell, since I just started, and it's not pay-per-click. There haven't been very many PSA's shown actually, but I imagine this will pick up towards the end of the month.
That's my amateur 2 cents. :-)