I'm having some problems with sessions on a windows install (4.2.3)
I start a session and it gets a session id, I then use that session id to do some stuff. When I'm finished that session (ie the user has reached a certain point in the site) I end it with session_unset(), session_destroy(). If the user then continues to surf the site, they should be issued with a new session (and hence a new session id).
This currently isn't working as I thought it would, the code is working but the session seems to remain active on some pages yet is lost on others (even though the session stuff is handled on a 'require' and the 'require' is on all of the pages).
I've a feeling this is the default behaviour of sessions, ie, you can't have a new session without closing the browser, but this seems quite limiting.
If this doesn't seem correct, I'll post some code. Perhaps it's a stupid mistake.
Thanks
Andrew