Using SimplePie with Yii

I want to be able to use SimplePie on Yii.

I’m using the 1.3-dev version of simplepie I created a “vendors” folder, put all I had in the .tar.gz in a simplepie subfolder. Then i add this lines at the beginning of my controller


Yii::import('application.vendors.SimplePie.*');

require_once 'SimplePieAutoloader.php';

spl_autoload_unregister(array('YiiBase','autoload'));

spl_autoload_register(array('SimplePie_Autoloader','autoload'));

spl_autoload_register(array('YiiBase','autoload'));

But when I try to use it, I get this error:


include(SimplePie_Core.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory


C:\wamp\www\yii\fr\framework\YiiBase.php(418)

Any ideas why I get this error?

Thanks

edit: i took the compiled version of simplepie and everythink works like a charm