This proxy is only for posts, and record "real IP" into post table. I did not do anything with online users and banning system.
I think BAN system do work with regular IP (which would be proxy IP in your case), so if you want to ban someone, you have to ban his proxy IP. there's nothing related to real IP revealed yet.
For rightnow, I am not interested in banning system (I dont ban anyone, there's no bad guy in my site tho), so ... I dont think I can help you yet.
anyway, if you wanna write it yourself, check out this part in functions.php
Code:
// ###################### Start checkipban #######################
function verify_ip_ban()
{
// checkes to see if the current ip address is banned
global $vboptions, $session;
$vboptions['banip'] = trim($vboptions['banip']);
if ($vboptions['enablebanning'] == 1 AND $vboptions['banip'])
{
$addresses = explode(' ', preg_replace("/[[:space:]]+/", " ", $vboptions['banip']) );
foreach ($addresses AS $val)
{
if (strpos(' ' . IPADDRESS, ' ' . trim($val)) !== false)
{
eval(print_standard_error('error_banip'));
}
}
}
}
You need to mahe sure that $proxyip is detected, and then compare this value with $val, something like
Code:
if (strpos(' ' . $proxyip, ' ' . trim($val)) !== false)
{
eval(print_standard_error('error_banip'));
}
Maybe you just need to add the code bellow
Code:
if (strpos(' ' . IPADDRESS, ' ' . trim($val)) !== false)
{
eval(print_standard_error('error_banip'));
}
remember, I DID NOT test the script, so if you try, give it some extra carefull
