If a site gets banned to all of mine get banned?

Discussion in 'Guidelines / Compliance' started by hitboy, Feb 4, 2007.

  1. #1
    So I have question I heard adsense bans sometimes just one of the users site or the whole account which one is true? Also what make the big difference? for them to decide? Thanks!
     
    hitboy, Feb 4, 2007 IP
  2. YIAM

    YIAM Notable Member

    Messages:
    2,480
    Likes Received:
    240
    Best Answers:
    0
    Trophy Points:
    280
    #2
    Google bans publisher account.
     
    YIAM, Feb 4, 2007 IP
  3. hitboy

    hitboy Well-Known Member

    Messages:
    2,939
    Likes Received:
    69
    Best Answers:
    0
    Trophy Points:
    170
    #3
    oh ok so not just one of my sites but all of my sites pretty much?
     
    hitboy, Feb 4, 2007 IP
  4. GlobalGamingNews

    GlobalGamingNews Banned

    Messages:
    316
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Correct. I've never heard of an individual site being banned. It would be your entire account.
     
    GlobalGamingNews, Feb 4, 2007 IP
  5. DarkGangsta

    DarkGangsta Banned

    Messages:
    317
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    0
    #5
    i have a question....when you get banned ...should you receive a mail that notice you that ?
     
    DarkGangsta, Feb 4, 2007 IP
  6. stilloutthere

    stilloutthere Peon

    Messages:
    217
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    0
    #6
    There have been posts here in the past from people who were notified of the banning after the fact. E-mail google and ask.
     
    stilloutthere, Feb 4, 2007 IP
  7. nichisata

    nichisata Peon

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    It's not correct.
    Some of my sites was banned by google, but my account still active.
    So, some of my sites that banned by google cannot display adsense, but the other sites still display my adsense ads.
     
    nichisata, Feb 4, 2007 IP
  8. hitboy

    hitboy Well-Known Member

    Messages:
    2,939
    Likes Received:
    69
    Best Answers:
    0
    Trophy Points:
    170
    #8
    What were you banned for if you dont mind me asking because I think it may depend on the situation thanks!
     
    hitboy, Feb 4, 2007 IP
  9. Barti1987

    Barti1987 Well-Known Member

    Messages:
    2,703
    Likes Received:
    115
    Best Answers:
    0
    Trophy Points:
    185
    #9
    You can get a site banned and you can see it on the site diagnosing tab.

    If you do not remove ads from it, then you might get your account banned.

    Peace,
     
    Barti1987, Feb 4, 2007 IP
  10. hitboy

    hitboy Well-Known Member

    Messages:
    2,939
    Likes Received:
    69
    Best Answers:
    0
    Trophy Points:
    170
    #10
    So they dont notify you if your site is banned?
     
    hitboy, Feb 4, 2007 IP
  11. GlobalGamingNews

    GlobalGamingNews Banned

    Messages:
    316
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #11
    That would take forever. I have that code on thousands of pages. lol
     
    GlobalGamingNews, Feb 4, 2007 IP
  12. scoopy82

    scoopy82 Active Member

    Messages:
    838
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    70
    #12
    helpful suggestion... learn this line of code:
    <?php include ('banner.php'); ?>
    PHP:
     
    scoopy82, Feb 4, 2007 IP
  13. nizzam

    nizzam Active Member

    Messages:
    324
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    58
    #13
    have you found out why it happen like that?

    we have to obey the TOS of google so no ban wont be imposed on our site..
    but when noticed that some site is ok and some other isnt ok, that make me strange.

    or is nobody advertise the ads as what in your content of website? that why the ads dont display
     
    nizzam, Feb 4, 2007 IP
  14. GlobalGamingNews

    GlobalGamingNews Banned

    Messages:
    316
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #14
    I just went through an extensive effort to move all of my pages away from php and back to standard html.
     
    GlobalGamingNews, Feb 5, 2007 IP
  15. hitboy

    hitboy Well-Known Member

    Messages:
    2,939
    Likes Received:
    69
    Best Answers:
    0
    Trophy Points:
    170
    #15
    your managing thousands of pages using html only? wow..
     
    hitboy, Feb 5, 2007 IP
  16. cool-dude

    cool-dude Well-Known Member

    Messages:
    140
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    103
    #16
    Hi hitboy, I also manage thousands of pages using html only. A few of my site are php but I am not very good with php yet. Still learning. I can install php scripts easy but I am not sure how to transform a site with many pages into php without having to create a new page each time. Could you shead some light?. Thanks
     
    cool-dude, Feb 5, 2007 IP
  17. hitboy

    hitboy Well-Known Member

    Messages:
    2,939
    Likes Received:
    69
    Best Answers:
    0
    Trophy Points:
    170
    #17
    I am not very good with php also but what are you trying to do exactly?

    as I mean what are you trying to transform
     
    hitboy, Feb 5, 2007 IP
  18. scoopy82

    scoopy82 Active Member

    Messages:
    838
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    70
    #18
    Don't you have to create a new page each time with HTML also ?

    All you need to do is rename your files to end with the ".php" extension. Then you can add things such as php includes.

    For example:
    <html>
    <head>
    </head>
    <body>
    </body>
    </html>
    Code (markup):
    and to place some includes:
    <html>
    <?php include ('header.php'); ?>
    <body>
    <?php include ('banner.php'); ?>
    </body>
    <?php include ('footer.php'); ?>
    </html>
    Code (markup):
    This way... if you need to change something in the header, banner, or footer... you only need to edit one file instead of thousands.
     
    scoopy82, Feb 6, 2007 IP
  19. GlobalGamingNews

    GlobalGamingNews Banned

    Messages:
    316
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #19

    Yes, but there is nothing on any of those pages that requires php. I use to use some php here and there - banner rotation, etc, but I no longer use any of those so I'd rather have plain html. It is much cleaner.

    If I ever had to remove adsense that would probably take a few days away from my schedule, but I don't anticipate that. Besides, most of those pages are just old news stories that I only keep up because they are indexed in the search engines. Each one only gets about a click a week. That adds up over a large number of pages, but if it came down to it, I could decide to not update them no matter how much the rest of the site changed and not give it a second thought.

    Funny thing I noticed about switching to html - and maybe this is pure coincidence. When I was php, I had well over 1,000 pages indexed by yahoo and google never bothered to index anything. When I switched to html, yahoo dropped about half the pages, but suddenly I had over 1500 in google.

    I dont think that would be much of a use to me. Every page has different meta data, different keywords, different description, etc, so having a generic header.php is not much of a use. I'm also not sure about how banner.php jives with adsense. Is that a violation?
     
    GlobalGamingNews, Feb 7, 2007 IP
  20. jerome

    jerome Banned

    Messages:
    1,052
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    0
    #20
    Some times the Google may be banned the whole account.
     
    jerome, Feb 7, 2007 IP