Hi, I should to display datas from a rss file from another server.
When the rss file is on my server, I can read it, but when I try to read the same file on another server, I obtain this :
Warning: simplexml_load_file(rssfile) [function.simplexml-load-file]: failed to open stream: Connection timed out in index.php on line 43
Warning: simplexml_load_file() [function.simplexml-load-file]: I/O warning : failed to load external entity "rssfile" in index.php on line 43
This is my code :
$actus = simplexml_load_file('rssfile');
foreach ($actus->channel->item as $actu)
{
echo $actu->title;
}
How to fix it ?
I think the problem comes from Symfony