Welcome Guest, Not a member yet? Register   Sign In
Caching Issue in IE 6
#3

[eluser]Phil Sturgeon[/eluser]
Code:
// Disable sodding IE7's constant cacheing!!
        $this->CI->output->set_header('HTTP/1.0 200 OK');
        $this->CI->output->set_header('HTTP/1.1 200 OK');
        $this->CI->output->set_header('Expires: Sat, 01 Jan 2000 00:00:01 GMT');
        $this->CI->output->set_header('Cache-Control: no-store, no-cache, must-revalidate');
        $this->CI->output->set_header('Cache-Control: post-check=0, pre-check=0, max-age=0');
        $this->CI->output->set_header('Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' );
        $this->CI->output->set_header('Pragma: no-cache');


Messages In This Thread
Caching Issue in IE 6 - by El Forum - 11-02-2009, 12:56 AM
Caching Issue in IE 6 - by El Forum - 11-02-2009, 02:48 AM
Caching Issue in IE 6 - by El Forum - 11-02-2009, 03:55 AM



Theme © iAndrew 2016 - Forum software by © MyBB