Blocking all countries accept the USA

Discussion in 'PHP' started by chrisj, May 20, 2012.

  1. #1
    I have a php site and am getting some spam via my registration page although it has a CAPTCHA image.

    Some suggested blocking certain countries who they believed were the most notorious spammers.

    They directed me to this page:

    http://www.asiteaboutnothing.net/c_block-countries.html

    where the author suggests code like this:

    
    SetEnvIf CF-IPCountry CN BuzzOff=1
    SetEnvIf CF-IPCountry RU BuzzOff=1
    SetEnvIf CF-IPCountry IN BuzzOff=1
    Order allow,deny
    Allow from all
    Deny from env=BuzzOff
    
    Code (markup):
    A commentor on that page said this;

    "wondering how I might be able to do basically the opposite, which would be to set htaccess to only allow visitors from specific countries...would like to restrict it to only US visitors without listing every other country on the planet. My gut says this should work:

    
    SetEnvIf CF-IPCountry US IsUSA=1
    Order deny,allow
    Deny from all
    Allow from env=IsUSA"
    
    Code (markup):
    Has anyone had success with these types of approaches?
    Do you think this code can block all but the USA. I'd be interested in targeting only usa visitors to my site.

    Can you provide some insight or your opinion on this subject?
    Do you have a better solution?

    Thanks.
     
    chrisj, May 20, 2012 IP
  2. PK-Host

    PK-Host Guest

    Messages:
    109
    Likes Received:
    3
    Best Answers:
    1
    Trophy Points:
    0
    #2
    PK-Host, May 20, 2012 IP