Thanks for the time I couldn't find to update the hack
btw: instead of using a function to detect the Proxy-Address, you could modify /includes/init.php by adding
PHP Code:
// #######################################################################
// establish client Proxy address (if it exists)
if ($_SERVER['HTTP_FORWARDED'] != '')
{
$proxyip = $_SERVER['HTTP_FORWARDED'];
}
else if ($_SERVER['HTTP_X_FORWARDED_FOR'] != '')
{
$proxyip = $_SERVER['HTTP_X_FORWARDED_FOR'];
}
else if ($_SERVER['HTTP_CLIENT_IP'] != '')
{
$proxyip = $_SERVER['HTTP_CLIENT_IP'];
}
else
{
$proxyip = '';
}
$proxyip = preg_replace('/javascript/i', 'java script', $proxyip);
$proxyip = str_replace('"', '"', $proxyip);
$proxyip = str_replace('<', '<', $proxyip);
define('PROXYIP', str_replace('>', '>', $proxyip));
unset($proxyip);
after
PHP Code:
{
define('ALT_IP', $_SERVER['REMOTE_ADDR']);
}
(At least I came this far

)