Adsense and Rotating Banners, Legal?

Discussion in 'Guidelines / Compliance' started by GetWebHost, May 28, 2006.

  1. #1
    I have setup in my site where the header has a random adsense and banner images showing.

    Just need your advice if its not againts the Google TOS. A demo of it can be found at the link in my signature. When you refresh the page, it will show either the Adsense or the banner ads.

    Thanks in advanced.
     
    GetWebHost, May 28, 2006 IP
  2. KingSEO

    KingSEO Peon

    Messages:
    295
    Likes Received:
    28
    Best Answers:
    0
    Trophy Points:
    0
    #2
    It's ok. You're only breaking the ToS if you are displaying other CONCEPTUAL ads on the same url as your adsense. You can always rotate (just watch out if you run several rotations).

    *I never bothered to look on your page. So use common sense.
     
    KingSEO, May 28, 2006 IP
  3. GetWebHost

    GetWebHost Active Member

    Messages:
    735
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    78
    #3
    Thanks KingSEO, I'm just making it sure coz I have a doubt of it. :)
     
    GetWebHost, May 28, 2006 IP
  4. cashboy

    cashboy Peon

    Messages:
    66
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #4
    triphp - id suggest u to contact adsense to really make sure....kingseo could be right.... but it is always good to remove all the doubts....
     
    cashboy, May 28, 2006 IP
  5. Pats

    Pats Peon

    Messages:
    10
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    I do not have Adsense yet, and being in this forum is my way of investigating if I should join.
    It looks like Google is very interactive with the users, given the recommendation of asking them every time you have a question about your legal o illegal status. Are they this helpful or you mail them and they take ages?
     
    Pats, May 29, 2006 IP
  6. jackburton2006

    jackburton2006 Peon

    Messages:
    5,296
    Likes Received:
    282
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Interactive? I wouldn't say that. They reply within days (usually), but their answers are sometimes very cryptic, and you can't always count on them knowing their own policies. Sometimes the answer you get from them varies depending on the experience or knowledge of the person who answered your question. Usually it takes 2 to 3 emails to get the answer you're looking for. People always recommends "ask Google" only because getting banned is worst than death to many publishers who have built their entire site just for Adsense and have no other source of revenue.
     
    jackburton2006, May 29, 2006 IP
  7. Pats

    Pats Peon

    Messages:
    10
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    So basically you just e-mail google and hope for the best. If they take to long you come here to the forum.
    Thank again Jack.
     
    Pats, May 30, 2006 IP
  8. rewlie

    rewlie Active Member

    Messages:
    937
    Likes Received:
    19
    Best Answers:
    0
    Trophy Points:
    58
    #8
    I dont see any complication in this case, as you dont modified the code, their target and behavior, they display as usual did it ??
     
    rewlie, May 30, 2006 IP
  9. GetWebHost

    GetWebHost Active Member

    Messages:
    735
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    78
    #9
    I already sent an email to them as of cashboy's advice and I'm waiting for the reply.

    There's no change on the code. Basically this is what I do:
    
    <?php
    $number=mt_rand(1, 2);
    if ($number==1) 
    {
        // rotating ads for the banner images
        // unlimited banners can go here
        include_once("ads/header/adrotate.php");
    }
    else
    {
        // this page contains only the adsense code 
        // [UNMODIFIED ADSENSE CODE]
        include_once("ads/header/adsense.php");
    }
    ?>
    PHP:
     
    GetWebHost, May 30, 2006 IP
  10. GetWebHost

    GetWebHost Active Member

    Messages:
    735
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    78
    #10
    Got already a reply from them and they said that publishers are permitted to rotate their AdSense code with other advertisements.

    Just tell me if you want the script I'm using and I'll share it.
     
    GetWebHost, May 31, 2006 IP
  11. mirainfo

    mirainfo Active Member

    Messages:
    988
    Likes Received:
    78
    Best Answers:
    0
    Trophy Points:
    70
    #11
    ah great. yes if you woud share the code then it can be useful to others ;)
     
    mirainfo, May 31, 2006 IP
  12. GetWebHost

    GetWebHost Active Member

    Messages:
    735
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    78
    #12
    1. Download CJ Ad Rotator from http://www.cj-design.com/products/free_downloads/php_scripts/cjadrotator and just read the Read Me file of that script.
    2. Put this code on the page where you want the Adsense or banner appear.
    <?php
    $number=mt_rand(1, 2);
    if ($number==1) 
    {
        include_once("path/to/cjadrotator/adrotate.php");
    }
    else
    {
        include_once("path/to/adsense_file/adsense.php");
        // adsense.php contains only an adsense code
        /* you can just put your adsense code directly here
        but make sure you close the php code after the opening
        bracket and open it again before the closing bracket*/
    }
    ?>
    PHP:
     
    GetWebHost, May 31, 2006 IP
  13. rewlie

    rewlie Active Member

    Messages:
    937
    Likes Received:
    19
    Best Answers:
    0
    Trophy Points:
    58
    #13
    is it working for static html page ??
     
    rewlie, Jun 3, 2006 IP
  14. rewlie

    rewlie Active Member

    Messages:
    937
    Likes Received:
    19
    Best Answers:
    0
    Trophy Points:
    58
    #14
    oh sorry, look at at the code now.
     
    rewlie, Jun 3, 2006 IP
  15. DaVe™

    DaVe™ Peon

    Messages:
    347
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #15

    I think you'll find the word is contextual
     
    DaVe™, Jun 3, 2006 IP
  16. mcgyver

    mcgyver Peon

    Messages:
    40
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #16
    you can also use phpadsnew. its a good open source ad server.
     
    mcgyver, Jun 3, 2006 IP
  17. GetWebHost

    GetWebHost Active Member

    Messages:
    735
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    78
    #17
    it's too big script for a simple banner ads.
     
    GetWebHost, Jun 4, 2006 IP
  18. rewlie

    rewlie Active Member

    Messages:
    937
    Likes Received:
    19
    Best Answers:
    0
    Trophy Points:
    58
    #18
    yeah, agreed :)
     
    rewlie, Jun 4, 2006 IP
  19. supriyadisw

    supriyadisw Peon

    Messages:
    203
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #19
    I just installed phpadsnew on my blog and I think it's a great tool :D But I have to learn and explore it more to get maximum result from it.

    Have a great day and gud lak
     
    supriyadisw, Sep 13, 2006 IP