I have a problem with joomla 2.5 caching system. As you know, by default system logged-in users does not use cache but, I must make them use the cache too. I tried several things like deleting
if ($user->get('guest') && $_SERVER['REQUEST_METHOD'] == 'GET') {
$this->_cache->setCaching(true);
}
from plugins\system\cache\cache.php but, none worked. When I do that, it forces logged-in users to logout. When I re-apply the original code, they automatically sign-in again. I could not find any solution for 3 days, so here I'm.
Does anybody have any idea?