Hi,
I am working one transfering someones site and on there main page they have a news feed. I uploaded the files to the new server and to bring in the feed on the main page is this code:
<? require('feed.php'); ?>
The problem is on the new server I am getting an error message saying it can't locate: XML/RSS.php so I went to the older server and I can't find this folder or file anywhere although it is working on the current server(old one)
I took a look at the feed.php file and here is what is is trying to do:
require('XML/RSS.php');
$out = '';
$rss =& new XML_RSS('http://rss.news.yahoo.com/rss/topstories');
$rss->parse();
basically my question is do you know how I can get this feed to work on the new server?
I am working one transfering someones site and on there main page they have a news feed. I uploaded the files to the new server and to bring in the feed on the main page is this code:
<? require('feed.php'); ?>
The problem is on the new server I am getting an error message saying it can't locate: XML/RSS.php so I went to the older server and I can't find this folder or file anywhere although it is working on the current server(old one)
I took a look at the feed.php file and here is what is is trying to do:
require('XML/RSS.php');
$out = '';
$rss =& new XML_RSS('http://rss.news.yahoo.com/rss/topstories');
$rss->parse();
basically my question is do you know how I can get this feed to work on the new server?



















