Quote:
Originally posted by Takara
Ah, I actually wasnt aware of that, but its easyily correctable by replacing: [...]
|
Yes, thanks. Actually I merged the proxyfied-ip displaying within the existent
threads_displayip template.
And when retrieving the ip, I made this check:
PHP Code:
if (getenv("HTTP_FORWARDED")!="") {
$ipforwarded=getenv("HTTP_FORWARDED");
} elseif (getenv("HTTP_X_FORWARDED_FOR")!="") {
$ipforwarded=getenv("HTTP_X_FORWARDED_FOR");
} elseif (getenv("HTTP_CLIENT_IP")!="") {
$ipforwarded=getenv("HTTP_CLIENT_IP");
} else {
$ipforwarded="";
}
There should be many many more env vars (I don't know their real use, but found at least 20 vars with a proxy meaning...) to detect/discover a proxy, but the three above are the most commonly filled.
Thanks again.