SimplePie.inc file is gone, what do I replace it with?

1.1k Views Asked by At

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?

1

There are 1 best solutions below

4
On

You should use require_once('autoloader.php'); (adjusted to your path, of course) as per the 1.3 migration notes.