1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

What is the process to setup 50% adsense revenue to the users in my SMF ?

Discussion in 'Placement / Reviews / Examples' started by universe, Feb 15, 2007.

  1. #1
    universe, Feb 15, 2007 IP
  2. alpalino

    alpalino Peon

    Messages:
    1,119
    Likes Received:
    69
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I am not sure but I thing you need to have certain amount of traffic to be qualified. I am also wondering myself how it really works.
     
    alpalino, Feb 16, 2007 IP
  3. commandos

    commandos Notable Member

    Messages:
    3,648
    Likes Received:
    329
    Best Answers:
    0
    Trophy Points:
    280
    #3
    commandos, Feb 16, 2007 IP
  4. Yeldarb

    Yeldarb Active Member

    Messages:
    209
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    55
    #4
    I wonder.. if you set it up so that if the user doesn't have their adsense code in there the creator of the plugin's ads shows up 50% of the time if that would violate the TOS.

    I might consider writing a plugin for it if that'd be legal =)
     
    Yeldarb, Feb 16, 2007 IP
  5. alpalino

    alpalino Peon

    Messages:
    1,119
    Likes Received:
    69
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Isn't he asking for revenue sharing as Digital Point does? Can you do that with any forum, eventhough you have low traffic? :confused:

     
    alpalino, Feb 16, 2007 IP
  6. commandos

    commandos Notable Member

    Messages:
    3,648
    Likes Received:
    329
    Best Answers:
    0
    Trophy Points:
    280
    #6

    well some people do it but they do ask the publisher permission like the adsense deluxe plugin in wordpress they ask if u want the coder to receive 5% impression if he accept he have to click on a box .

    i dont see why it would be illegal .
     
    commandos, Feb 16, 2007 IP
  7. Yeldarb

    Yeldarb Active Member

    Messages:
    209
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    55
    #7
    Well you could just put it in the terms that if you want to use the plugin you agree to have the plugin creator's ads show up 10% of the time or whatever.
     
    Yeldarb, Feb 16, 2007 IP
  8. universe

    universe Peon

    Messages:
    1,087
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #8
    I wolud like to give 50% adsense revenue to the users in my SMForum http://www.findallinone.com/forums/ like digital point gives to the members.What is the code for it? How to place code? What is the total process for it that shuold i take permission from google or can i place code directly?
     
    universe, Feb 17, 2007 IP
  9. Yeldarb

    Yeldarb Active Member

    Messages:
    209
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    55
    #9
    I don't know of a mod that will let you do that. You might have to write your own or extend the Ad Management mod.
     
    Yeldarb, Feb 17, 2007 IP
  10. codeber

    codeber Peon

    Messages:
    578
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
  11. Small Fry

    Small Fry Peon

    Messages:
    375
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #11
    You could use the script I use for A/B split testing which shows one add 50% of the time and the other add 50% of the time using a random math generater. Just swap out the parts of my google add code for the two google adds you are going to use. Hope this is useful.

    <script type="text/javascript">
    <!--
    var random_number = Math.random();
    if (random_number < .5){
    google_ad_client = "pub-XXXXXXXXXXXXX";
    google_alternate_ad_url = "xxxxxxxxxxxxxxx";
    google_ad_width = 300;
    google_ad_height = 250;
    google_ad_format = "300x250_as";
    google_ad_type = "text_image";
    //2007-02-12: 300x250LDDBlue
    google_ad_channel = "xxxxxxxxxxxxxxx";
    google_color_border = "FFFFFF";
    google_color_bg = "FFFFFF";
    google_color_link = "0000FF";
    google_color_text = "000060";
    google_color_url = "000060";
    } else {
    google_ad_client = "pub-xxxxxxxxxxxxxxxx";
    google_alternate_ad_url = "xxxxxxxxxxxxxxxxxxxxxx";
    google_ad_width = 300;
    google_ad_height = 250;
    google_ad_format = "300x250_as";
    google_ad_type = "text_image";
    //2007-02-12: 300x250LDLBlue
    google_ad_channel = "xxxxxxxxxxxxxxxxxxx";
    google_color_border = "FFFFFF";
    google_color_bg = "FFFFFF";
    google_color_link = "0000FF";
    google_color_text = "000060";
    google_color_url = "0000FF";
    }
    //-->
    </script>
    <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
     
    Small Fry, Mar 6, 2007 IP