Search code examples
phplaravellaravel-3simplepie

Can't make SimplePie Laravel bundle to work


I'm trying to use SimplePie for Laravel to parse RSS feeds. I have followed the instructions and all, but can't seem to make it work.

This is my View. I echoed the rss

<?php $result = rssparser::parse(); 
echo $result;?>

And this error appears:

Non-static method SimplePie_Misc::fix_protocol() should not be called statically, assuming $this from incompatible context

C:\wamp\www\ctnpepo\bundles\rssparser\libraries\simplepie\SimplePie.php on line 834

Is there any way to fix this?


Solution

  • This is only a warning internally in SimplePie, and you can safely ignore it.