[SOLVED] CGFeedMaker produces empty RSS feed from CGBlog
Posted: Fri Oct 23, 2015 10:48 pm
I have had for a long while a CGFeedMaker template for a blog rss feed. Apparently, about the end of August or early September 2015 it broke. The variable $items in the code below became empty. I added
to fix the immediate problem of an undefined variable, but after that I am not clear how to fix the problem to get the blog entries into the $items array. I think it has something to do with global scope and a change to CGBlog that I discovered while researching the forums, but honestly I cannot figure out how to make it work. I have a very similar feed template for the News module and it works fine.
I think my main problem is that I still don't grok how templates and smarty work in CMS Made Simple. Sorry I'm a bit slow...
My setup:
CMS Install Information
CMS Version 1.12.1
Installed Modules
News 2.15.2
CSSMenu 1.2.2
TinyMCE 2.8.4
JSCookMenu .02
PHPLayers 1.1
FileManager 1.4.5
Printing 1.1.2
CMSMailer 5.2.2
MenuManager 1.8.7
CGSimpleSmarty 1.9.1
CGExtensions 1.49.7
CGBlog 1.13.1
CGFeedMaker 1.0.20
FrontEndUsers 1.30.4
Captcha 0.5.2
SelfRegistration 1.9.3
SiteMapMadeSimple 1.2.8
CMSPrinting 1.0.5
MicroTiny 1.2.9
ModuleManager 1.5.8
Search 1.7.13
ThemeManager 1.1.8
CMSForms 1.11.2
JQueryTools 1.3.7
VisitorStats 0.3.3
FormBuilder 0.8.1.1
CustomContent 1.10
Code: Select all
if (isset($items))
I think my main problem is that I still don't grok how templates and smarty work in CMS Made Simple. Sorry I'm a bit slow...
Code: Select all
{CGBlog assign='junk' number=500}
{foreach from=$items item='entry'}
<item>
<title>{$entry->title|cms_html_entity_decode}</title>
<link>{$entry->moreurl}</link>
{capture assign='description'}{if isset($entry->summary)}{$entry->summary}{else}{$entry->content}{/if}{/capture}
<description>{$description|trim|strip_tags|unescape:"htmlall"}</description>
<pubDate>{$entry->postdate|rfc_date}</pubDate>
<guid>{$entry->moreurl}</guid>
</item>
CMS Install Information
CMS Version 1.12.1
Installed Modules
News 2.15.2
CSSMenu 1.2.2
TinyMCE 2.8.4
JSCookMenu .02
PHPLayers 1.1
FileManager 1.4.5
Printing 1.1.2
CMSMailer 5.2.2
MenuManager 1.8.7
CGSimpleSmarty 1.9.1
CGExtensions 1.49.7
CGBlog 1.13.1
CGFeedMaker 1.0.20
FrontEndUsers 1.30.4
Captcha 0.5.2
SelfRegistration 1.9.3
SiteMapMadeSimple 1.2.8
CMSPrinting 1.0.5
MicroTiny 1.2.9
ModuleManager 1.5.8
Search 1.7.13
ThemeManager 1.1.8
CMSForms 1.11.2
JQueryTools 1.3.7
VisitorStats 0.3.3
FormBuilder 0.8.1.1
CustomContent 1.10