
04-14-2014, 11:26 AM
|
 |
|
|
Join Date: May 2007
Posts: 533
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by ozzy47
Lets try this:
Edit your includes/class_core.php file and find:
Code:
if ($proxy)
{
define('ALT_IP', $this->ipaddress);
define('IPADDRESS', $this->alt_ip);
}
else
{
define('IPADDRESS', $this->ipaddress);
define('ALT_IP', $this->alt_ip);
}
define('SESSION_HOST', substr(IPADDRESS, 0, 15));
}
And change it to this:
Code:
if ($proxy)
{
define('ALT_IP', $this->ipaddress);
define('IPADDRESS', $_SERVER['HTTP_X_FORWARDED_FOR']);
}
else
{
define('IPADDRESS', $this->ipaddress);
define('IPADDRESS', $_SERVER['HTTP_X_FORWARDED_FOR']);
}
define('SESSION_HOST', substr(IPADDRESS, 0, 15));
}
It may work, I can not say for sure as I am not getting that issue on my sites.
|
Hi Chris, i've tried this but it didn't work, i still can't rate a thread, the only way to fix it is if i restart my dsl but that is not the proper way for a feature.
|