All was working fine till today, but suddenly I am getting this error today. Warning: file() [function.file]: php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/content/...... on line 242 Code (markup): I am using GoDaddy hosting PHP Ver is 5. In php.ini allow_url_fopen = on Can anyone guide me where i am getting wrong. Here is the actual php code: $GrabURL = $id; $GrabStart = '<span id="intelliTxt">'; $GrabEnd = '<div id="fbconnect">'; $file = file($GrabURL); $contents = ''; foreach($file as $num=>$line) { if(stristr($line,$GrabStart)) { $start = $num; } if($start) { $contents .= $line; } if(stristr($line,$GrabEnd)) { break; } } echo $contents;
mrkool, If you're running PHP 5, name your initialization file php5.ini. Make sure you upload the initialization file to the root directory of your site.