Forum Moderators: martinibuster
User comes to my website and he's randomly redirected to page A (adsense ads) or page B (google ads). Javascript will randomly take them to either page each time they visit. This way i can run both. Is this ok?
My friend told me that yahoo pays him more then google so i thought i would try it out.
Why are you randomly loading Adsense and Yahoo ads on different pages?
I (not the original poster) do it to fight ad blindness.
My setup serves U.S. visitors Adsense/YPN 50-50, and non-U.S. visitors Adsense 100% of the time (because YPN forbids foreign traffic). Since about half of my site visitors are non-U.S., this all implies that Adsense ads are served roughly 75% of the time, and YPN ads roughly 25% of the time.
I dropped the alternating dance after a month or so and returned to AS full-time, though since that time my site's AS EPC has fallen to roughly 1/2 of its former glory on the same number of daily clicks.
In the past, I tried alternating ads on a daily basis. I question the effectiveness of that approach. If your site technology can manage it (mine can), better to serve ads randomly in real time, from one page view to the next.
On the server side scripting are you serving different pages with different source code to the Adsense Media bot versus the Yahoo bot? (Is Adsense looking for this type of harmless cloaking?)
If not, I'm wondering what the Adsense bot thinks of the code just randomly coming and going, which is what the bot would see?
I'm tempted to experiment too, but solely on the client side, having code for both Adsense, Yahoo, and perhaps others all on the same page, but through client scripting only enable one block of code (AS, Yh) for a given page view. That way the bots all see the code all the time. Does this seem reasonable?
Will the Adsense bot (and Adsense) be upset seeing Yahoo code on the same page? Of course I can guarantee through scripting only one source of ads will ever show for a given page view.
Anybody monitor Media bot while adding and removing the Adsense code on the server side, say on a daily basis? Does the Adsense (Media) bot visit more often?
When smart pricing was introduced, adding and removing (or changing) the code frequently, was definitely boosting earnings, but this was remedied fairly quickly by Adsense.
Here's the code that I use in the head:
<script type="text/javascript">
var gyadvert = 2;
if (window.clientInformation && window.clientInformation.systemLanguage=="en-us"){
var gyadvert = Math.random();
}
</script>
Then you can test for the value of gyadvert. If it is greater than 0.5 then I show the YPN ad. I can post my entire code if people are interested.