PHP Secure Remote Proxy Server Health - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T21:33:04Zhttp://stackoverflow.com/feeds/question/772502http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/772502/php-secure-remote-proxy-server-health2PHP Secure Remote Proxy Server HealthAJ Cerqueti2009-04-21T13:07:57Z2009-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&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#7727421Answer by Tom Haigh for PHP Secure Remote Proxy Server HealthTom Haigh2009-04-21T14:03:37Z2009-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><?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>