I am having problems with the following code:
function http_file_exists($url){ $f=fopen($url,"r"); if($f){ fclose($f); return true; } else { return false; }
} $url = "http://www.minhemmelighed.dk/Graphics/Products/55.jpg";
print http_file_exists($url);
The error it returns is:
Warning: fopen(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /srv/http/webshop3/image_scraper/test.php on line 6 Warning: fopen(http://www.minhemmelighed.dk/Graphics/Products/55.jpg): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /srv/http/webshop3/image_scraper/test.php on line 6
What can I do about this? I have rebooted the server several times.
For the record:
I can access the website in question through a browser
I am running LAMP on Arch Linux