I was recently visiting a site and noticed that the page had a section that said it noticed that I was using AdBlocking software and could I kindly turn it off to help support a small site like that. I was just wondering how you would do that? Would it be best done client-side or server-side?
feedback
|
|
This is something that simply can't be done server side - there's zilch reason for person to knock on your door and say "Look at me, I have AdblockPlus!". When on the client side, adblock is actively trying to influence the page content, which is something you can see happen and see that they are using an adblocker. Anyway, I happened to know that newgrounds.com is doing this too. (their new layout was screwed up for adblock plus users - as a response they made a contest for the best "if you're not going to help us through our ads, go and buy something in the store"-banner. A quick look in the source of newgrounds told me they are doing this with some simple javascript. First in the document:
Next there is a external script tag: Now the joke: they simply trust adblock plus to filter that script out, as all that's in there is: From there, they can do just about anything. | |||||||
feedback
|
|
I found this part in the code which seems to look like how they did it:
| |||
|
feedback
|
|
I guess there are several ways of doing it, but probably the easiest one would be to have some kind of background image, or text, that will be replaced when the ad is loaded. Thus, if the ad gets loaded, you see the ad. If the ad doesn't load, you see the text. This example would be client side, done by either JavaScript or just plain CSS might even suffice. There might be some server-side gimmicks that could do this too, but they would be unnecessarily elaborate and clunky. One method that springs to mind would include some kind of API with the advertiser that could be asked "did the user from IP such.and.such load any images?" and in that way get the answer. But I doubt there's such services - it would be much easier to do on the client side. | |||
|
feedback
|
|
You could do it on server side by pairing requests for html pages and for the acording ads (probably with some unique identifiers to each request ...) ... But this is just an idea, i've never tried it and never even seen it used. | |||
|
feedback
|
|
All off the methods mentioned here rely on the ad blockers to strip out code. This doesn't work for some adblockers(like NetBarrier on Mac). You also have to keep updating your code when the adblockers catch on. To detect if the user is blocking ads, all you have to do is find a function in the ad javascript and try testing for it. It doesn't matter what method they're using to block the ad. Here's what it looks like for Google Adsense ads:
This method is outlined here: http://www.metamorphosite.com/detect-web-popup-blocker-software-adblock-spam | |||||
feedback
|
|
I don't think there is an easy way to do this. What you can do is to create "trap". Make a php script listen to a very obvious url like yourdomain.com/ad.png. You can probably achieve this by url rewriting. If this page is loaded you can note this in a session variable and send back a 1x1 blank png. On the next request you can see whether ad.png has been loaded. If it hasn't you can guess that the client is using some form of AdBlock software. Make sure you set the appropriate http headers to prevent clients from caching "ad.png". This is the only server side approach I can think of at the moment and it has some flaws.
Please make a comment on this post if you decide to try it out. Regarding a client side solution. This shouldn't be to difficult. You can create a tiny Javascript to run on page load complete. This script can check that the page contains the dom-nodes holding the ads. If you this when the page is loaded completely (not only the dom) you can check the width and height of your ad images. The most obvious drawback with this solution is that clients can disable javascripts. | ||||
feedback
|
|
A few good answers here, so I'll just add this: use some ad management system (You can write Your own). With that, track every ad that's being displayed (and make it obvious, like ads.php or showad.php or whatever). If that script is never called, the user is using SOME form of ad blocking software. Be sure to handle each and every ad through that handler, though. Mod_Rewrite isn't required, it can be done using simple PHP. | |||
|
feedback
|
|
If you can detect it... In the areas that say adsense would have been just put an image. Would it know to strip that out? Surely it would not block a simple image tag. That would make most sites useless. | |||
|
feedback
|