[Normal] Bug report in cache plugin and patch included - Joomla! Forum - community, help and support
joomla 1.5.14 , .15, enabled xcache , worked php caching.
enabled "cache plugin" , saved on files. set save on xcache still saved on files.
enabled global cache , saved on xcache
disabled global cache , saved on files....
i cheched code , think there missing declaration, patch this:
with patch cache plugin correctly saves on xcache....
let me know if ok....
enabled "cache plugin" , saved on files. set save on xcache still saved on files.
enabled global cache , saved on xcache
disabled global cache , saved on files....
i cheched code , think there missing declaration, patch this:
code: select all
--- cache.php 2009-04-21 01:58:49.000000000 +0200
+++ cache.php 2009-11-07 00:38:58.000000000 +0100
@@ -51,7 +51,8 @@
'lifetime' => $this->params->get('cachetime', 15) * 60,
'browsercache' => $this->params->get('browsercache', false),
'caching' => false,
- 'language' => $config->getvalue('config.language', 'en-gb')
+ 'language' => $config->getvalue('config.language', 'en-gb'),
+ 'storage' => $config->getvalue('config.cache_handler', 'file')
);
jimport('joomla.cache.cache');
with patch cache plugin correctly saves on xcache....
let me know if ok....
Comments
Post a Comment