There are no errors there in the cPanel Error Log.
If it helps at all, the page that I'm trying to run the code on is http://it354ex.pcriot.com/index.php . I also tried creating a new page (test.php) and pasting the same code in it, with the same result. Currently, test.php is working because...
Thanks for the response! The simplest code that will lead to a 500 error is:
<?php
$ch = curl_init("http://api.flickr.com/services/feeds/photos_public.gne?id=39102179@N04&lang=en-us&format=rss_200");
$xml = curl_exec($ch);
?>
The exact error is:
500 Error
An internal server...
I am trying to use the cURL library in PHP to access the following URL of a Flickr stream RSS feed:
http://api.flickr.com/services/feeds/photos_public.gne?id=39102179@N04&lang=en-us&format=rss_200
It's not working, and as I was searching the forums for an answer as to why this may be, I...