I want the users of my application to stay logged in for very long periods of time. The problem is the the session expires on the server end, thus losing variables stored in the session. So, I'm setting the session to expire in 10 days.
My question is: Is there any security or performance issues of setting the GC expiry and cookie lifetime to 10 days? ini_set('session.cookie_lifetime', 864000); ini_set('session.gc_maxlifetime', 864000);
Thank you :)