The problem I am facing is my session remains intact if I close the browser without logging out, if I set to restore pages (option "Continue where I left off" in Chrome). I have seen some mainly concern Firefox (link 1, link 2, link 3, but I am facing same in Chrome as well.
So basically here where I stand:
Problem: If user chose the option to restore previously open pages in browser, Session remain intact even if I close browser.
Reason: By design
My PHP Settings:
session.cookie_lifetime = 0
session.cache_expire = 180
session.use_only_cookies = ON
Solution I tried: I tried below by ini_set as per this recommendation
session.cache_expire = 0
session.use_only_cookies = OFF
Solution: Yet to find one.