Chrome not clearing SESSION COOKIES on close/exit Chrome not clearing SESSION COOKIES on close/exit google-chrome google-chrome

Chrome not clearing SESSION COOKIES on close/exit


Thanks to KevinB for pointing me in the right direction.

Turns out it wasn't the cookie setting like I thought, I ended up keeping that set to:

Allow local data to be set (recommended)

I remembered that

Google NOW

had recently been installed on my machine, and that I allowed it to run in the background when I did not have my browser open, I believe this was the culprit to my session cookies not being cleared.

What ended up fixing this issue was to uncheck the:

Continue running background apps when Google Chrome is closed

setting under the SYSTEM section.

Hope this helps save some headaches....


The "Continue running background apps" option may work, but we cannot expect the users (clients) to do this with their Chrome web browser.My solution was as follows:They click the "Log out" button - this takes them to a page that is pure PHP (no html code) that is scripted:

<?php session_start(); $_SESSION=array(); $cookie_parameters=session_get_cookie_params(); setcookie(session_name(),'',time() -86400,$cookie_parameters['path'], $cookie_parameters['domain'],$cookie_parameters['secure'],$cookie_parameters['httponly']);session_destroy();header('Location: logout_exit.php');?>

The "header" part of the code takes them (instantly) to the page "logout_exit.php" (You name your page whatever you like, and can have .html extension rather than .php)And this page is pure html (no php!). Now at this point, if you look in Chrome for cookies, you will see that your cookie is still there! But click following image:Chrome shows cookie deleted, but still there!

The magic is to include a meta tag in your logout_exit.php page (in the header part of the html code) as:

<meta http-equiv="refresh" content="30">

Forcing the browser to automatically refresh (30 = 30 seconds, but choose whatever value you want). Once it's refreshed, if you now look in Chrome, it says "Cookies (0 in use)" and if you click that message, you find the cookie really has been cleared.