PHP Secure Remote Proxy Server Health - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T21:33:04Z http://stackoverflow.com/feeds/question/772502 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/772502/php-secure-remote-proxy-server-health 2 PHP Secure Remote Proxy Server Health AJ Cerqueti 2009-04-21T13:07:57Z 2009-04-23T05:47:11Z <p>Hi,</p> <p>Want to be alerted when a secure remote proxy server stop working; for instance if Apache hangs for some reason.</p> <p>As the remote machine will still be up, will still be able to <code>ping</code>, though this would prove very little.</p> <p>Need to be able to script something that requests a path through the proxy and then returns the result.</p> <p>Investigated PHP/PEAR Net <a href="http://pear.php.net/packages.php?catpid=16&amp;catname=Networking" rel="nofollow">library</a>, thinking something like <code>Net_traceroute()</code> could be a starting point, but can't figure out how to force the route through the server.</p> <p>Any ideas? Should I even be using PHP or would another language make this easier?</p> <p>Cheers,</p> <p>AJ</p> http://stackoverflow.com/questions/772502/php-secure-remote-proxy-server-health/772742#772742 1 Answer by Tom Haigh for PHP Secure Remote Proxy Server Health Tom Haigh 2009-04-21T14:03:37Z 2009-04-21T14:03:37Z <p>If you want to make an HTTP request through the proxy, which I guess is the case because you mention Apache as the proxy?, then you could use <a href="http://uk.php.net/manual/en/ref.curl.php" rel="nofollow">cURL</a>. Probably something like this:</p> <pre><code>&lt;?php $curl = curl_init('http://www.example.com'); //don't fetch the actual page, you only want to check the connection is ok curl_setopt($curl, CURLOPT_NOBODY, true); //stop it from outputting stuff to stdout curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); //proxy settings curl_setopt($curl, CURLOPT_PROXYPORT, 8080); curl_setopt($curl, CURLOPT_PROXY, 'proxyhost'); curl_setopt($curl, CURLOPT_PROXYUSERPWD, 'user:password'); $result = curl_exec($curl); if ($result === false) { die (curl_error($curl)); } </code></pre> <p>There are more options for cURL documented <a href="http://uk.php.net/manual/en/function.curl-setopt.php" rel="nofollow">here</a>.</p>