Reputation: 565
I am trying to follow this tutorial on how to set up SimplePie.
http://css-tricks.com/video-screencasts/55-adding-rss-content-with-simplepie/
At 10:40 he adds
require_once('inc/simplepie.inc');
to get simplepie library. However in SimplePie 1.3.1 simplepie.inc is not included. What should I replace it with instead?
Upvotes: 0
Views: 1165
Reputation: 1658
You should use require_once('autoloader.php');
(adjusted to your path, of course) as per the 1.3 migration notes.
Upvotes: 1