Quote:
Originally Posted by Abhik
Hello,
I want to ban a IP or a whole IP Range.
It seems vBulletin 4.0.4 don't have a default option for that.
May I know how can I do that?
TIA
|
You can also try to ban those ip ranges through .htaccess by placing the following code at your .htaccess file:
Code:
order allow,deny
deny from ip address range here
deny from ip address range here
allow from all
And replace ip address range here with the ip address ranges that you want to ban. To add more, simply keep adding
Code:
deny from ip address range here.
You can also redirect them to another page by adding this code:
Code:
ErrorDocument 403 http://www.redirectbannedmembers.com//
The url I posted above is an example, you should replace it with that of your own where you want to redirect the banned users.
Hope it helps.