Welcome Guest, Not a member yet? Register   Sign In
Cache Problem
#2

[eluser]Unknown[/eluser]
I solved my problem editing the method cache in codeigniter/libraries/output.php.

Code:
function cache($time)
{
  $CI =& get_instance();    
  $enable_cache = $CI->config->item('enable_cache');
  $this->cache_expiration = (
    (is_numeric($time) && $enable_cache) ?
    $time :
    0        
  );
}

I have no idea if this is the best place but at least it made some sence.
Tiago


Messages In This Thread
Cache Problem - by El Forum - 12-02-2008, 10:41 AM
Cache Problem - by El Forum - 12-02-2008, 11:18 AM



Theme © iAndrew 2016 - Forum software by © MyBB