Jump to content

Blocking IP addresses


sford999

Recommended Posts

I`m looking to block some spammers IP addresses from a couple of my sites pages but haven`t had much luck so far.

This is the code I`ve tried:

[code]$ip = $_SERVER["REMOTE_ADDR"];

if($ip == 123.123.123.123 || 132.132.132.132 || 231.231.231.231)
{
    include ("header.inc");
    include ("menu.inc");
    echo "<br /><strong>Sorry, but your IP address has been blocked, if you feel this is an error, please contact the site administrator.</strong><br />";
    include ("footer.inc");
    exit();
}
else
{

// other code here

}
[/code]

The code just continues as normal, without stopping me from accessing the page content. I`ve got 2 seperate fixed IP addresses (2 different ISP`s) and when i add them to the list of blocked IP`s it doesn`t work.
Can anyone advise a fix?

Thanks in advance
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.