if Posted October 15, 2008 Share Posted October 15, 2008 http://rss.imageshack.us/user/NilsPetter13/images/rss ive tried curl and file_get_contents but still no luck i can browse that page using browser but when i read the file using php this is no longer giving me any ouput <?php error_reporting(E_ALL); ini_set('reporting_errors',1); // spoofing FireFox 2.0 $useragent="Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1"; $str = array( "Accept-Language: en-us,en;q=0.5", "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7", "Keep-Alive: 300", "Connection: keep-alive" ); $ch = curl_init(); // set user agent curl_setopt($ch, CURLOPT_USERAGENT, $useragent); curl_setopt($ch, CURLOPT_HTTPHEADER, $str); curl_setopt($ch, CURLOPT_REFERER, ""); curl_setopt($ch, CURLOPT_URL, "http://rss.imageshack.us/user/NilsPetter13/images/rss"); // grab URL and pass it to the browser curl_exec($ch); // close cURL resource, and free up system resources curl_close($ch); ?> this is also not working $url = 'http://rss.imageshack.us/user/NilsPetter13/images/rss'; echo file_get_contents($url); print_r(file($url)); please help Link to comment https://forums.phpfreaks.com/topic/128478-i-cant-read-this-file/ Share on other sites More sharing options...
MasterACE14 Posted October 15, 2008 Share Posted October 15, 2008 maybe try fopen(); ? with the read attribute Link to comment https://forums.phpfreaks.com/topic/128478-i-cant-read-this-file/#findComment-665841 Share on other sites More sharing options...
if Posted October 15, 2008 Author Share Posted October 15, 2008 yah still no luck Link to comment https://forums.phpfreaks.com/topic/128478-i-cant-read-this-file/#findComment-665852 Share on other sites More sharing options...
if Posted October 15, 2008 Author Share Posted October 15, 2008 anybody? plz Link to comment https://forums.phpfreaks.com/topic/128478-i-cant-read-this-file/#findComment-665893 Share on other sites More sharing options...
if Posted October 15, 2008 Author Share Posted October 15, 2008 please help i been working on this for 2 days please Link to comment https://forums.phpfreaks.com/topic/128478-i-cant-read-this-file/#findComment-665938 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.