No network response from PHP network functions through IIS 7
Posted: Sat Sep 19, 2009 11:37 pm
Take this simple PHP script which gets contents from a website:
If I call this script within a PHP file as a script through Eclipse PDT, it provides a response.
If I call this script within the same PHP file was a webpage through IIS 7, it provides no response (false).
If I run this same script on the same box in WAMP, no problems.
The same is true if I use PHP cURL:
Jeff in Seattle
Code: Select all
$response = file_get_contents(http://www.google.com);If I call this script within the same PHP file was a webpage through IIS 7, it provides no response (false).
If I run this same script on the same box in WAMP, no problems.
The same is true if I use PHP cURL:
Code: Select all
$ch = curl_init();
$timeout = 0;
curl_setopt ($ch, CURLOPT_URL, 'http://www.google.com');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$response = curl_exec($ch);
curl_close($ch);