Is this ban from Adsense??

jovica888

Regular Member
Joined
Dec 15, 2011
Messages
432
Reaction score
96
I got 2 emails from google adsense saying that I have problem on 2 pages of my 2 websites. I have domain checking website (like whois.domaintools.com) and problem is when someone check one Adult domain. My website don't link to that website and dont have thumbnail. Just information about that site.

I had this problem before. I resolve it on this way - I got email, I removed that domain, and in my policy-violations page I checked Resolve -> Removed Content and that is it.

But now I did not get notifications in policy-violations page and now I can not mark those problems "Resoved". I think I should not answer on that email. Email is "[email protected]" I removed problematic pages immediately but how to tell them that now is all ok??
 
Would you mind sharing the content of the email that you have received from Google?
 
content sent to your mail from google what it is the fault not locked account ?
 
First of all please relax and do not panic.It is not the end of the world.I haven't received any email.You can post the content here only after removing your website URL from it.
 
It's simple really, remove the Adsense from those pages and tick the resolution box.

Is the website completely adult or is it just one page that's got adult content on it? If it's the complete website you may want to remove Adsense from it completely. The human reviewer will likely browse the entire site to double check now you're on their radar.

If you don't do exactly what they say you're likely heading for bansville.....
 
See, first of all remove all the adsense ads from the concerned website.Now according to the second part of the email, you dont have to contact Google after making all the changes.You can do one thing, if you are able to completely remove the part of the website which is responsible for all this, you can then reinsert adsense otherwise it you would be better off taking adsense completely off from it, or you may risk loosing your whole account next time.
 
It's simple really, remove the Adsense from those pages and tick the resolution box.
I did that but where should I tick the resolution box when I did not got notification in adsense panel?

My website is not adult website. It is like whois.net or who.is So problem is because I can not remove all Adult website domains from my checked history.
I don't parse their content like meta tags title tags or something so I don't have any of their content. Just domain name and technical data server IP whois server location....
I just can not remove all adult websites when approximately 200 p0rn websites is started every day.
 
I did that but where should I tick the resolution box when I did not got notification in adsense panel?

My website is not adult website. It is like whois.net or who.is So problem is because I can not remove all Adult website domains from my checked history.
The problem is "Google" wont understand this nor your website's working model.
 
What can I do with those websites then? I have about 5 websites working on nearly same way and making me about 1500$ per month ATM
 
What can I do with those websites then? I have about 5 websites working on nearly same way and making me about 1500$ ATM
Since you are making $1500 you are eligible for direct email support from Google.You will find a Contact Us option in the adsense help centre.Use that to explain your situation.Thats your best bet at the moment.
 
I sended feedback to them here. Is that ok?
http://i.imgur.com/ApSJc1s.png

Maybe I should make something like Declaimer "We are not responsible for content of checked domains and all informations displayed here are for educational purpose"
 
I sended feedback to them here. Is that ok?
http://i.imgur.com/ApSJc1s.png

Maybe I should make something like Declaimer "We are not responsible for content of checked domains and all informations displayed here are for educational purpose"
Sending feedback wont help a single bit.You need to contact them explicitly using "Contact Us" option.Sadly this option wont appear on their mobile site.Use a desktop browser to accomplish this.
 
I send them with their contact form. I will wait for answer. I will write news here :-) Thank you
 
I got reponse and they helped me how to make my websites to achive all their TOS

I made a simple code that will disable ads when domain name contains any problematic word...

<?php
if(strpos($domain, "escort") !== false || strpos($domain, "pussy") !== false || strpos($domain, "erotic") !== false || strpos($domain, "sex") !== false
|| strpos($domain, "xxx") !== false || strpos($domain, "jizz") !== false || strpos($domain, "fuck") !== false
|| strpos($domain, "dick") !== false || strpos($domain, "porn") !== false || strpos($domain, "milf") !== false
|| strpos($domain, "tube") !== false) $disableads= 1;
?>

What do you think. Is this good?
 
I got reponse and they helped me how to make my websites to achive all their TOS

I made a simple code that will disable ads when domain name contains any problematic word...

<?php
if(strpos($domain, "escort") !== false || strpos($domain, "pussy") !== false || strpos($domain, "erotic") !== false || strpos($domain, "sex") !== false
|| strpos($domain, "xxx") !== false || strpos($domain, "jizz") !== false || strpos($domain, "fuck") !== false
|| strpos($domain, "dick") !== false || strpos($domain, "porn") !== false || strpos($domain, "milf") !== false
|| strpos($domain, "tube") !== false) $disableads= 1;
?>

What do you think. Is this good?
I don't have enough experience in PHP or as a matter of fact any programming language, but I would stress that if this piece of code, helps in filtering out adsense ads on adult related pages, then you are good to go.
 
Well I put this on the top of my code and later in code I put adsense code in this IF statement
<?php if($disableads != 1) { ?>
<script adsense code goes here ></script>
<?php } ?>
 
Add to the code , uppercase or lowercase letters boss .

Strtoupper
Strtolower
 
This code goes below some other code that makes all letters in domain lowercase.
 
Back
Top