Welcome Guest, Not a member yet? Register   Sign In
Problems with output cache
#1

[eluser]davste[/eluser]
Hi,

I use the Output cache method on some of my pages:
$this->output->cache (60);

This works fine, but whenever the user logs out the system, and accesses the restricted page, the function's constructor won't redirect him. The thing that happens is that the Output Class will get the Cache file and display that.

Code:
class Restricted_page extends Controller {

public function __constructor ()
{
    parent::Controller();

    if ($this->Authentication->login_validation() === FALSE) {
        redirect ();
    }
}

public function index ()
{
    $this->output->cache (30);

    $this->load->view ('admin_index');
}
}

This is just an example code, but gives you an idea. Instead of being redirected by the Constructor, the cached page will show.. I want the constructor to run, and THEN load the content from cache, if the user is logged in!


Messages In This Thread
Problems with output cache - by El Forum - 02-23-2010, 08:10 AM
Problems with output cache - by El Forum - 02-23-2010, 10:14 AM
Problems with output cache - by El Forum - 02-23-2010, 10:22 AM
Problems with output cache - by El Forum - 02-23-2010, 10:45 AM
Problems with output cache - by El Forum - 02-23-2010, 11:23 AM
Problems with output cache - by El Forum - 02-23-2010, 11:28 AM
Problems with output cache - by El Forum - 02-23-2010, 01:55 PM
Problems with output cache - by El Forum - 02-23-2010, 03:54 PM
Problems with output cache - by El Forum - 02-23-2010, 05:53 PM
Problems with output cache - by El Forum - 02-23-2010, 06:29 PM
Problems with output cache - by El Forum - 02-24-2010, 03:25 AM
Problems with output cache - by El Forum - 02-24-2010, 01:18 PM
Problems with output cache - by El Forum - 02-25-2010, 05:23 AM
Problems with output cache - by El Forum - 02-25-2010, 09:20 AM
Problems with output cache - by El Forum - 02-25-2010, 10:26 AM
Problems with output cache - by El Forum - 10-11-2010, 01:21 AM
Problems with output cache - by El Forum - 10-11-2010, 05:31 AM
Problems with output cache - by El Forum - 10-11-2010, 11:45 AM
Problems with output cache - by El Forum - 10-11-2010, 12:19 PM



Theme © iAndrew 2016 - Forum software by © MyBB