dobbs
Mon 12th Jan '09, 2:16pm
I had this problem before. I have recently changed hosting and the board is now on a cluster. I found a similar thread and made this change.
For anyone who is on a shared cluster environment (not shared hosting), here is where you modify your files:
includes\class_core.php]
Line 2120 : return $_SERVER['REMOTE_ADDR'];
Line 2130 : $alt_ip = $_SERVER['REMOTE_ADDR'];
I changed it to
includes\class_core.php]
Line 2120 : return $_SERVER['HTTP_X_CLUSTER_CLIENT_IP'];
Line 2130 : $alt_ip = $_SERVER['HTTP_X_CLUSTER_CLIENT_IP'];
It works for me and all of the other users except two guys.
Any idea why these two are stuck?
For anyone who is on a shared cluster environment (not shared hosting), here is where you modify your files:
includes\class_core.php]
Line 2120 : return $_SERVER['REMOTE_ADDR'];
Line 2130 : $alt_ip = $_SERVER['REMOTE_ADDR'];
I changed it to
includes\class_core.php]
Line 2120 : return $_SERVER['HTTP_X_CLUSTER_CLIENT_IP'];
Line 2130 : $alt_ip = $_SERVER['HTTP_X_CLUSTER_CLIENT_IP'];
It works for me and all of the other users except two guys.
Any idea why these two are stuck?