Hello, I have 3 questions: 1. How can I find about a logged-in user's session data? I would like to see when was the session started, how long has the user been idle? and how much time left for session expire?
2. I have a session setting in my application.ini file related to session's save_path as below: resources.session.save_path = path_to_project"/data/sessions" However, the session cookie files are not saved on this location. How can I force this location? 3. I tried to implement remember me functionality for logins as below: //if login successfull Zend_Session::rememberMe($rememberMeSeconds);//remember me for 1 month. But this code sends the user to login form and does not give any error. However, when debugging via webdeveloper plugin, i see a cookie that is valid through the rememberMeSeconds. But still i have one more default cookie for the domain which is firstly created. What is the correct way to implement rememberme functionality? Thanks in advance
