PHPBB Adsense Pointing Robot

Discussion in 'AdSense' started by SUPERSTEVE9219, Feb 4, 2007.

  1. #1
    I have been on a few forums and I even used a program for PHPBB that would post a adsense ad like it was a user, like a user called "Advertisement" but instead of posting something there would a be a google ad.

    does anyone know where I could find this ad?
     
    SUPERSTEVE9219, Feb 4, 2007 IP
  2. Reprobate

    Reprobate Guest

    Messages:
    1,060
    Likes Received:
    35
    Best Answers:
    0
    Trophy Points:
    90
    #2
    Reprobate, Feb 4, 2007 IP
  3. KingNomar

    KingNomar Well-Known Member

    Messages:
    1,825
    Likes Received:
    123
    Best Answers:
    0
    Trophy Points:
    155
    #3
    thats interesting, I would like to know how you go to !!

    sounds good
     
    KingNomar, Feb 5, 2007 IP
  4. JEET

    JEET Notable Member

    Messages:
    3,832
    Likes Received:
    502
    Best Answers:
    19
    Trophy Points:
    265
    #4
    I'm not sure, but I think you are not supposed to use google ads as "content" on forums etc, if that what this add on will do...
    Google might cancel the account. Be careful :)
    An entire "post" made of adsense might not be a good idea, if that's what you meant.
    Sorry if you meant something else
    bye :)
     
    JEET, Feb 5, 2007 IP
  5. GlobalGamingNews

    GlobalGamingNews Banned

    Messages:
    316
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #5
    I see some forums that have adsense signatures.

    If I go to the forum and input my own signature, then that's what people see. If I sign up but do not create a signature, then the forum displays an adsense block where the signature would be.

    If anyone comes across a mod for this, please point me to it.
     
    GlobalGamingNews, Feb 5, 2007 IP
  6. SUPERSTEVE9219

    SUPERSTEVE9219 Well-Known Member

    Messages:
    170
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    110
    #6
    SUPERSTEVE9219, Feb 5, 2007 IP
  7. SUPERSTEVE9219

    SUPERSTEVE9219 Well-Known Member

    Messages:
    170
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    110
    #7
    SUPERSTEVE9219, Feb 5, 2007 IP
  8. Reprobate

    Reprobate Guest

    Messages:
    1,060
    Likes Received:
    35
    Best Answers:
    0
    Trophy Points:
    90
    #8
    Reprobate, Feb 5, 2007 IP
  9. EGS

    EGS Notable Member

    Messages:
    6,078
    Likes Received:
    438
    Best Answers:
    0
    Trophy Points:
    290
    #9
    That's against Google's TOS I think...saying the word "Advertisement(s)" or "Sponsors"...
     
    EGS, Feb 5, 2007 IP
  10. Reprobate

    Reprobate Guest

    Messages:
    1,060
    Likes Received:
    35
    Best Answers:
    0
    Trophy Points:
    90
    #10
    This isn't exactly what you're after (I haven't seen it in action) but if it doesn't do what you want then it may be doing a whole bunch of other things you might want to try...

    This MOD lets you easily ad advertisments within the posts of your forum. It is highly customizable: http://www.phpbb.com/phpBB/viewtopic.php?t=306680
     
    Reprobate, Feb 5, 2007 IP
  11. SUPERSTEVE9219

    SUPERSTEVE9219 Well-Known Member

    Messages:
    170
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    110
    #11
    SUPERSTEVE9219, Feb 5, 2007 IP
  12. SUPERSTEVE9219

    SUPERSTEVE9219 Well-Known Member

    Messages:
    170
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    110
    #12
    SUPERSTEVE9219, Feb 5, 2007 IP
  13. 0lgi

    0lgi Notable Member

    Messages:
    2,743
    Likes Received:
    131
    Best Answers:
    0
    Trophy Points:
    220
    #13
    Hello !

    Here it is :

    #
    #-----[ OPEN ]------------------------------------------
    #
    viewtopic.php
    
    #
    #-----[ FIND ]------------------------------------------
    #
       $row_color = ( !($i % 2) ) ? $theme['td_color1'] : $theme['td_color2'];
       $row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2'];
    
    #
    #-----[ REPLACE WITH ]------------------------------------------
    #
       $row_color = ( !($num % 2) ) ? $theme['td_color1'] : $theme['td_color2'];
       $row_class = ( !($num % 2) ) ? $theme['td_class1'] : $theme['td_class2'];
       $num ++;
    
    #
    #-----[ FIND ]------------------------------------------
    #
          'U_POST_ID' => $postrow[$i]['post_id'])
       );
    
    #
    #-----[ AFTER, ADD ]------------------------------------------
    #
       if($i == $ad_after)
       {
          $row_color = ( !($num % 2) ) ? $theme['td_color1'] : $theme['td_color2'];
          $row_class = ( !($num % 2) ) ? $theme['td_class1'] : $theme['td_class2'];
          $num ++;
    
          $mini_post_url = append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $postrow[$i]['post_id']) . '#ad';
          $template->assign_block_vars('postrow', array(
             'ROW_COLOR' => '#' . $row_color,
             'ROW_CLASS' => $row_class,
             'POST_DATE' => $post_date,
             'POST_SUBJECT' => 'Advertisement',
             'MINI_POST_IMG' => $mini_post_img,
             'POSTER_NAME' => 'Advertisement',
    	   'POSTER_RANK' => 'Advertiser',
             'MESSAGE' => '<div align="center">Ad code here</div>',
             'L_MINI_POST_ALT' => $mini_post_alt,
             'U_MINI_POST' => $mini_post_url,
             'U_POST_ID' => 'ad')
          );
       }
    
    #
    #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
    Code (markup):
    Olgi
     
    0lgi, Feb 6, 2007 IP