I’ve added a page at http://mikeage.net/content/proxy.php that will show you the details of the proxy server (if any) you’re currently using. There’s also a light version available that doesn’t have the sidebar or CSS themes. Enjoy!
I’ve added a page at http://mikeage.net/content/proxy.php that will show you the details of the proxy server (if any) you’re currently using. There’s also a light version available that doesn’t have the sidebar or CSS themes. Enjoy!
2 responses to “Proxy Checker”
Hi,
is there any chance you could tell me how this works please?
Have a nice day,
Adam
Look at http://mikeage.net/content/proxy.php.txt for a copy of (some of) the source. Basically, it just reads the environment variables as follows:
$remote = getenv('REMOTE_ADDR');
$remote_name = gethostbyaddr($remote);
$via = getenv('HTTP_VIA');
$for = getenv('HTTP_X_FORWARDED_FOR');