You don't have permission to access /index on this server.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
Here are a couple quick mods to help keep out proxies
Add this to .htaccess
rewriteCond %{HTTP:VIA} !^$ [OR]
RewriteCond %{HTTP:FORWARDED} !^$ [OR]
RewriteCond %{HTTP:USERAGENT_VIA} !^$ [OR]
RewriteCond %{HTTP:X_FORWARDED_FOR} !^$ [OR]
RewriteCond %{HTTP:PROXY_CONNECTION} !^$ [OR]
RewriteCond %{HTTP:XPROXY_CONNECTION} !^$ [OR]
RewriteCond %{HTTP:HTTP_PC_REMOTE_ADDR} !^$ [OR]
RewriteCond %{HTTP:HTTP_CLIENT_IP} !^$
RewriteRule ^(.*)$ - [F]
Two more mods to help keep out Other types of proxies. Place them in your index.php file on top, and anyplace u might want added security from proxies connections.
if(isset($_SERVER['HTTP_X_FORWARDED_FOR']) || ($_SERVER['HTTP_USER_AGENT']=='') || ($_SERVER['HTTP_VIA']!='')){ die("Don't use proxies, please.");}
if(@fsockopen($_SERVER['REMOTE_ADDR'], 80, $errstr, $errno, 1))die("Proxy access not allowed");
Hope this helps
spamIP is a PHP script that blocks out spambots from any type of website that supports PHP. It uses the data collected by Stopforumspam.com and the GeoIP data from MaxMind.com.
I am going to make a plugin that will use the spamIP DB and checks IP every page on a oxwall site :)
I have more problems with Proxy connections for some reason, and the other small three mods together pretty much stop them from connection.
On the search. If an IP isn't found could we have an option
too add the ip? Something simple like IP not found would you like to add.
MarkieMark67 I have updated the software with your idea! :) if you search and cant find the IP, it gives you a click button to add it right away