I am running Nuke 6.5 and added an RSS feed from Yahoo using a standard Nuke block. I noticed that no matter what I set the refresh time to, the RSS feed was being updated constantly. This caused the website to appear to run slow due to the latency from constantly getting the RSS feed.
I noticed a bug in mainfile.php and made the following fix to line 813:
was:
$sql = "SELECT title, content, url, refresh, time FROM ".$prefix."_blocks WHERE bid='$bid'";
now:
$sql = "SELECT title, content, url, refresh, time AS otime FROM ".$prefix."_blocks WHERE bid='$bid'";
This causes the refresh time calculations to work!
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum