Arrr!!! Schools/colleges/unis have the same IP?!?!

Discussion in 'Guidelines / Compliance' started by itsall3, Mar 13, 2006.

  1. #1
    Hi all!

    i'm working at a school on placement right now, in the tech/IT dept.

    Anyways, i've shown the kids my site to play games at break, but another guy who works there told me (after i explained that i lose my adsense account if ads are clicked-and reclicked), that schools all use the same IP.

    I dont get many hits to my site - but on avarage google says i get about 2000 page views, and about 7 clicks a week. I get an avarage of 40 uniques a day.

    Im just worried that all the clicks have been by the same IP from the kids on my site.

    Is this too low to worry about? My site has been made for unis/college students - i dont know what to do???

    Google hasnt said anything, but i've only made $8, i dont want to get to my first 100 only to be told that right at the begining my account was doomed! :(

    Damn i wish google just blocked reclicks to ads

    Thanks for any advice - or anyone who tells me to stop worrying about nothing. :p

    Regards
     
    itsall3, Mar 13, 2006 IP
  2. Notting

    Notting Notable Member

    Messages:
    3,210
    Likes Received:
    335
    Best Answers:
    0
    Trophy Points:
    280
    #2
    My site is aimed soley at Nottingham students - no probs.
     
    Notting, Mar 13, 2006 IP
  3. itsall3

    itsall3 Active Member

    Messages:
    505
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    58
    #3
    Cheers man, thats a huge relief!

    I just hope google sees it the same way.

    Have you had any cheques from google yet, with so many clicks from the same ip???
     
    itsall3, Mar 13, 2006 IP
  4. adstracker

    adstracker Peon

    Messages:
    81
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #4
    I think it would be smart to mail Google about this.
    Another solution would be to filter that ip from your website, in other words, if someone from that school visits your website, then it doesnt show any ads.
     
    adstracker, Mar 13, 2006 IP
  5. exam

    exam Peon

    Messages:
    2,434
    Likes Received:
    120
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Be sure you *never* log in to your adsense account from school. Also, if too high a percentage of clicks comes from the same IP, you might get in trouble, even if you aren't connected to it. (You might not get banned, but the clicks might be reversed)
     
    exam, Mar 13, 2006 IP
  6. adstracker

    adstracker Peon

    Messages:
    81
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #6
    I agree, but wouldn't Google notice that the ads are being clicked from different computers by using the Google cookie?
     
    adstracker, Mar 13, 2006 IP
  7. bartmann

    bartmann Peon

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    how would you implement the filter ip thing?
     
    bartmann, Mar 13, 2006 IP
  8. adstracker

    adstracker Peon

    Messages:
    81
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #8
    The filter ip thing:

    <?php
    //Insert ip here :)
    $ipthatyouwanttofilter = "255.255.255.255";

    if($_SERVER['REMOTE_ADDR'] != $ip) {
    echo 'insert google ad script here';
    }
    ?>
     
    adstracker, Mar 13, 2006 IP
  9. falcondriver

    falcondriver Well-Known Member

    Messages:
    963
    Likes Received:
    47
    Best Answers:
    0
    Trophy Points:
    145
    #9
    i think this could be a problem. google knows the geo location (you can buy databases who translate ip adresses to a locatation, quite accurate up to city level) and a "fingerprint" of each computer (screen resolution+color depth+browser version+os version+...), which may also be the same in a computer room. i dont know how much they give for cookies, because everyone can edit them.
     
    falcondriver, Mar 13, 2006 IP
  10. adstracker

    adstracker Peon

    Messages:
    81
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #10
    I doubt they will check the screen resolution. The GEO ip thing could be true. But that wouldn't be anymore usefull than checking the ip.
    I know cookies are editable, but so are the resolution, OS etc. They can't know for sure it's really another pc that is clicking the ads.
     
    adstracker, Mar 13, 2006 IP
  11. ryan_uk

    ryan_uk Illustrious Member

    Messages:
    3,983
    Likes Received:
    1,022
    Best Answers:
    33
    Trophy Points:
    465
    #11
    if you have access to php & mysql:

    php:
    $ip = $_SERVER["REMOTE_ADDR"];
    
    $ip_query = 'SELECT * FROM filtered_ips WHERE ip = "' . $ip . '"';
    
    if(mysql_num_rows(mysql_query($ip_query)) == 0) {
    print "<adsense stuff here>";
    }
    PHP:
    Mysql:
    CREATE TABLE filtered_ips (
    id int(3) NOT NULL auto_increment,
    ip varchar(16) NOT NULL,
    PRIMARY KEY (id));
    Code (markup):
    Use phpMyAdmin or similar to update the mysql db.

    No mysql?

    php:
    $ip = $_SERVER["REMOTE_ADDR"];
    
    $ip_array = ("xxx.xxx.xxx.xxx", "xxx.xxx.xxx.xx");
    
    if(!in_array($ip, $ip_array)) {
    print "<adsense stuff here>";
    }
    PHP:
    I didn't test either, but should work.
     
    ryan_uk, Mar 13, 2006 IP
  12. adstracker

    adstracker Peon

    Messages:
    81
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #12
    I would use the non-mysql one. Using mysql for ip-tracking purposes is very heavy for the server. If you would generate one query for every visitors, and you have 200 visitors at the same time, think what would do that to your server load.
    The non-mysql thing is better, because all the checking for ip's is done within the scripts, and no other processes have to be called.
     
    adstracker, Mar 13, 2006 IP
  13. ryan_uk

    ryan_uk Illustrious Member

    Messages:
    3,983
    Likes Received:
    1,022
    Best Answers:
    33
    Trophy Points:
    465
    #13
    php solution is better for a small number of IPs. But once the list gets large then mysql is better. The solution could be improved so only one mysql query per session using cookies. use "setcookie" after checking the ip is allowed and then set a long duration for the session. you would now just need to check the correct cookie value is set.
     
    ryan_uk, Mar 13, 2006 IP
  14. Notting

    Notting Notable Member

    Messages:
    3,210
    Likes Received:
    335
    Best Answers:
    0
    Trophy Points:
    280
    #14
    I login from the uni network and no problems. Chances are i've probably logged in from the same computer which people have used to click on ads, again no problem.
     
    Notting, Mar 14, 2006 IP
  15. Notting

    Notting Notable Member

    Messages:
    3,210
    Likes Received:
    335
    Best Answers:
    0
    Trophy Points:
    280
    #15
    Another point - sometimes whole streets have the same ip
     
    Notting, Mar 14, 2006 IP
  16. devin

    devin Guest

    Messages:
    4,461
    Likes Received:
    449
    Best Answers:
    0
    Trophy Points:
    0
    #16
    have you gotten your first check, notting?
     
    devin, Mar 14, 2006 IP
  17. jackburton2006

    jackburton2006 Peon

    Messages:
    5,296
    Likes Received:
    282
    Best Answers:
    0
    Trophy Points:
    0
    #17
    Yes, but what are the chances that a whole street will all be on your site at the same time clicking on multiple ads within a 24-hour period?
     
    jackburton2006, Mar 14, 2006 IP
  18. Notting

    Notting Notable Member

    Messages:
    3,210
    Likes Received:
    335
    Best Answers:
    0
    Trophy Points:
    280
    #18
    only a point of interest. (unless you have a very very niche website!)
     
    Notting, Mar 15, 2006 IP
  19. exam

    exam Peon

    Messages:
    2,434
    Likes Received:
    120
    Best Answers:
    0
    Trophy Points:
    0
    #19
    I recommend being overly cautious. Google can dump you if they suspect you of fraud. You don't have to actually commit it. (read the ToS)
     
    exam, Mar 15, 2006 IP
  20. jackburton2006

    jackburton2006 Peon

    Messages:
    5,296
    Likes Received:
    282
    Best Answers:
    0
    Trophy Points:
    0
    #20
    You still haven't answered devin09's question yet. Have you gotten your first check from Google yet?
     
    jackburton2006, Mar 15, 2006 IP