Joomla 1.5.14 and .15, I enabled XCache and it worked for php caching.
Enabled "cache plugin" and it saved on files. Set to save on XCache but it still saved on files.
Enabled the global cache and it saved on XCache
Disabled the global cache and it saved on files....
I cheched the code and I think there is a missing declaration, the patch is this:
Code:
--- 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 this patch cache plugin correctly saves on XCache....
Let me know if it is ok....