1
Web Oriented Coding / Re: Website not terminating session?
« on: January 06, 2013, 10:54:01 PM »You need to read more on sessions.
Cookies had expiration dates and they expire when the server tell your browser that the session is expired or the date expires.
The cookies doesn't have to die when you close the website unless the server was configured to end the session when a connected is lost.
That is how that "keep me signed in" button works. Usually some websites also have a time interval for how long you want to be signed in.
Your right my bad. I misinterpreted this info : "Web browsers normally delete session cookies when the user closes the browser."
So it deletes the session cookie on the client side but not necessary on server-side.
Thank you