How to Ban IP address
May be some people wanna hack your website or make you angry cause he put order in your shop with no payment and wrong address or spam in your forum, blog ect.
How To Ban IP Address? First you need register in histats.com to get free visitor list, include their IP address.
Then Use the below code, simply past one of the codes in a file named ban.php
For Single IP :
<?php
// For a single user ban
$ban_ip = ‘xxx.xxx.xxx.xxx’; // ip address of the person you want to ban// DO NOT EDIT BELOW HERE UNLESS YOU KNOW WHAT YOU ARE DOING
$visitor_ip = $_SERVER['REMOTE_ADDR']; // the ip address of the visitor
if($visitor_ip == $ban_ip)
{
die(”<br><br><center><h2>You are banned from this site!<br>Please contact / email Web Administrator admin@yourdomain.com</h2></center>);
}?>
For Multiple IP :
<?php
// For a multiple user ban
$ban_ip = (”xxx.xxx.xxx.xxx,xxx.xxx.xxx.xxx”); // put ip addresses, separated by commas
// DO NOT EDIT BELOW HERE UNLESS YOU KNOW WHAT YOU ARE DOING
$visitor_ip = $_SERVER['REMOTE_ADDR'];
$ip_list = explode(”,”, $ban_ip);
foreach($ip_list as $ip)
{
if($visitor_ip == $ip)
{
die(”<br><br><center><h2>You are banned from this site!<br>Please contact / email Web Administrator admin@yourdomain.com</h2></center>”);
}
}?>
Then at the top of index.php files put this code:
require ‘ban.php’;
This script will ban the person(s) from viewing the site.
Random Post
Related Articles
- Warning hack password Yahoo mail !
- Mechanisms against Spam Mail
- IPSEC - Public Key Infrastructor
- Tutorial: IPSec Security structure
- WordPress enhanced login security plugin
- How to protect login on Wordpress admin ?
- How to surf website by VPN
- Secure Sockets Layer (SSL)
- Secure Sockets Layer (SSL)
- Software for Virtual Private Network
Recent Posts
- Free Panda Internet Security 2010: Windows 7 Launch Party
- FREE 1-year license of Kaspersky Internet Security 2010!
- Warning hack password Yahoo mail !
- How to Use Western Union quick cash at Google Adsense ?
- Western Union available in VietNam
- Facebook for Nokia phones
- DailyMotion now offering Embed HD Video Players
- Free Adword voucher $50
- How to create Shortlinks with Google Apps
- Auto post to Blogger with PHP
- Free Auto Blogger: Auto post rss feed
- The Google Analytics API and PHP
- Using the Google Analytics API - getting total number of page views
- Google Analytics PHP API class
- Blogger team warning Spam posts
- Adsense launching “Category filter Beta”
- Alternatives to Google Adsense by other programs
- What is Adsense Smart Price ?
- How to avoid Adsense Smart Pricing ?
- How to use Adsense again if get banned
Recent Comments
- Patrik
in Warning hack password Yahoo mail ! - Nancy
in Auto post to Blogger with PHP - Tony M J
in DailyMotion now offering Embed HD V… - fonfenVak
in Enable Ping track in wordpress - DaiVyCorp - Int…
in My Google AdSense Account Is Disabl… - DaiVyCorp - Int…
in My Google AdSense Account Is Disabl… - AlexAxe
in VPN Protocols - jennefoh
in Make more money: YouTube Videos Com… - GlenStef
in VPN Protocols - DaiVyCorp - Int…
in Why should I use proxy servers ?
Most Commented
- Top 10 ways to boost alexa ranking (4)
- How to Boost Alexa Ranking (4)
- VPN Protocols (4)
- Make more money: YouTube Videos Coming to AdSense (2)
- My Google AdSense Account Is Disabled (2)
- Top 10 secrets success with business online (1)
- SEO with Site Address / URL (1)
- Free Ways to Increase Your Blog Traffic (1)
- How to SEO wordpress, The Complete Guide (1)
- Manual Unzip Server Command (1)
Most Viewed Post
- Top 10 ways to boost alexa ranking - 1,802 views
- Invalid Clicks Contact Form: How to contact to Google Adsense support Team - 1,274 views
- Auto post to Blogger with PHP - 1,250 views
- Adsense launching “Category filter Beta” - 1,204 views
- Tutorial: IPSec Security structure - 1,197 views
- How to SEO Copywrite - 1,148 views
- Free Auto Blogger: Auto post rss feed - 1,062 views
- SEO with Site Address / URL - 1,040 views
- How to Use Western Union quick cash at Google Adsense ? - 963 views
- How to Prevent Spam VBB with GeoIPCountry - 922 views
Categories
- How to (51)
- SEO (33)
- Google adsense (31)
- Business land (13)
- Security Policies (21)
- Tips (26)
- Technology news (7)
- Traffic guide (9)
- Top secrets MMO (6)
- Tutorials (10)










No Comment
Leave Your Comments Below