Rss Feed Automatic Update

Permalink
Hi,
I am new to C5 and I am trying to use an rs feed from http://www.heatingandventilating.net/news/HVRnews.xml... and insert it on my web site using RSS Displayer, I have managed to get the feed to display on my site but for some reason my website does not display the updated feed from http://www.heatingandventilating.net/news/HVRnews.xml...
is there a setting somewere that I can use to get my website to get the updated feed I am using the latest version of C5 but can't seem to find a solution.

Thanks in advance for your help

MarkRussellKington
 
fastcrash replied on at Permalink Reply
fastcrash
you can set $btCacheBlockOutput = false in rss_displayer controller.php
protected $btCacheBlockOutput = false;  //default true


http://www.concrete5.org/community/forums/usage/cache-setting-quest...
maybe can help you
MarkRussellKington replied on at Permalink Reply
MarkRussellKington
Hi Fastcash,
please can you tell me where to locate rss_displayer controler.php as I am new to C5

Thanks
fastcrash replied on at Permalink Reply
fastcrash
concrete/blocks/rss_displayer/controller.php

edit :)
MarkRussellKington replied on at Permalink Reply
MarkRussellKington
Thanks,
is that all I needed to do ?
fastcrash replied on at Permalink Reply
fastcrash
yes, just set it to false, and refresh your page, see if the rss the new one.

find
protected $btCacheBlockOutput = true;

change to
protected $btCacheBlockOutput = false;


refresh your page
it's work for me though.