
Originally Posted by
Debbers
But that only sets it so that it does not cache, it doesn't actually fix the real problem.
That could put a boatload of queries on someone's database in sizeable store, couldn't it?
deb
Just an update on this error. This mod has a typo in the classes file it will not add new products to your feed when you add new products.
The error can be found in the file: includes/classes/rss_feed.php
find around line 383 :
Find
PHP Code:
if ($time == false || (time() - filemtime(DIR_FS_RSSFEED_CACHE . '/' . $zv_file)) < $time) {
Replace with:
PHP Code:
if ($time == false || (time() - filemtime(DIR_FS_RSSFEED_CACHE . '/' . $zv_file)) > $time) {
Bookmarks