Submitted by Nino (not verified) on Sun, 09/17/2006 - 05:09.
Hello,
Thank God there is a page like this! This is actually the info I need for the same problem. And my other problem ,upon reading the article and the comments, is I am posting my application in a shared web server where configuration/settings of PHP/Apache cant be customized.
If I issue ini_set('session.save_path', '/my_htdocs_path/my_session_data'); in my code and there is another application that did not set its own session.save_path, will the session data of that other application be saved in the save path I set? If so, then if that other application sets gc_maxlifetime to invoke the garbage collection frequently than I wanted for my application, then it erases the session data that I purposely separated. Please enlighten me. How should this problem be solved effectively considering the constraints?
Hello, Thank God there is a
Hello,
Thank God there is a page like this! This is actually the info I need for the same problem. And my other problem ,upon reading the article and the comments, is I am posting my application in a shared web server where configuration/settings of PHP/Apache cant be customized.
If I issue ini_set('session.save_path', '/my_htdocs_path/my_session_data'); in my code and there is another application that did not set its own session.save_path, will the session data of that other application be saved in the save path I set? If so, then if that other application sets gc_maxlifetime to invoke the garbage collection frequently than I wanted for my application, then it erases the session data that I purposely separated. Please enlighten me. How should this problem be solved effectively considering the constraints?
Thank you.