Welcome Guest, Not a member yet? Register   Sign In
Cannot sign out!!
#1

[eluser]NikosV[/eluser]
Any ideas why i cannot sign out while on ie8? Everything seems to work fine only when i disable Protected mode on security tab in browser's internet properties.

Code:
class Signout extends Controller
{
    function index()
    {
        
        session_name('what_ever');
        session_start();
        if(isset($_SESSION['username'])) { unset($_SESSION['username']); }
        if(isset($_SESSION['loggedin'])) { unset($_SESSION['loggedin']); }
        if(isset($_SESSION['notification'])){ unset($_SESSION['notification']); }
        session_destroy();
        
        setcookie('cook_email',"", time()-60*60*24*100, "/");
        setcookie('cook_pass',"", time()-60*60*24*100, "/");
        
        redirect('home','refresh');
    }
}

?>


Messages In This Thread
Cannot sign out!! - by El Forum - 02-27-2010, 07:00 AM
Cannot sign out!! - by El Forum - 05-13-2010, 10:24 AM
Cannot sign out!! - by El Forum - 05-13-2010, 06:03 PM
Cannot sign out!! - by El Forum - 05-14-2010, 02:16 AM
Cannot sign out!! - by El Forum - 05-14-2010, 03:12 AM



Theme © iAndrew 2016 - Forum software by © MyBB