I’m trying to include RSS feeds in a post Here’s what I’ve done: First, I created a custom field called rssfeed. Magpie is installed. Then, I use this code under Body in my template
{exp:magpie url="{rssfeed}" limit="20" refresh="30"}
{magpie:items}
<li>
<a href="http://{magpie:link}">{magpie:title}</a>
{magpie:description}
{magpie:about}
</li>
{/magpie:items}
{/exp:magpie}I’m not getting anything from this though, and there’s an error message at the top of the page:
Warning: MagpieRSS: Failed to fetch /www/eh9881/public_html/Engine/plugins/pi.magpie.php on line 1390
Notice: Trying to get property of non-object in /www/eh9881/public_html/Engine/plugins/pi.magpie.php on line 105
Any ideas on how to solve this one? TIA