I want to keep the session of user logged in to my website to persist even after the user turns off the browser or the user shuts down its system. The user session will exist until he logs out or clears the browser cookie.
Currently I have user ini_set("session.cookie_lifetime",2678400);
which will keep the session to persist for a month.
The behavior is as follow:
Can anyone tell why is it that the login session is not shown as the user opens the browser and comes to site and shown after several refresh of same page or browsing other pages.
any help ?