Quote:
Originally Posted by Revan
I dont like the thought of assuming other hacks are installed... else cool addition 
|
You are right, porting the get proxyIP part over here.
Anyone who already installed my proxyIP hack dont need to do this part.
in includes/init.php
look for:
PHP Code:
{
define('ALT_IP', $_SERVER['REMOTE_ADDR']);
}
Add below
PHP Code:
// ####################### HN getproxyip START########################
// 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);
// ####################### HN getproxyip END ########################