One thing I've been noticing more and more frequently happen lately is whenever I goto vote on a movie, someone with the same ISP has already voted on it, I'm sure me and many other members get this problem a lot, and apparently because of proxies, I'm not so sure, but PintClock said there could be a way to fix this sort of problem, if the problem is proxies.
He said using this code could help the problem maybe.
if (getenv("HTTP_CLIENT_IP") && strcasecmp(getenv("HTTP_CLIENT_IP"), "unknown"))
$ip = getenv("HTTP_CLIENT_IP");
else if (getenv("HTTP_X_FORWARDED_FOR") && strcasecmp(getenv("HTTP_X_FORWARDED_FOR"), "unknown"))
$ip = getenv("HTTP_X_FORWARDED_FOR");
else if (getenv("REMOTE_ADDR") && strcasecmp(getenv("REMOTE_ADDR"), "unknown"))
$ip = getenv("REMOTE_ADDR");
else if (isset($_SERVER['REMOTE_ADDR']) && $_SERVER['REMOTE_ADDR'] && strcasecmp($_SERVER['REMOTE_ADDR'], "unknown"))
$ip = $_SERVER['REMOTE_ADDR'];
else
$ip = "unknown";
return($ip);
Would using this code be good for the portal? Or the servers? I'm not sure but would it help the system?