My session.cookie_lifetime
is set to 7 days (604800
seconds).
I've run into an issue where sometimes users get logged out in the middle of a long multiple file upload (using PLupload), because they happened to log in (say) 6 days and 23 hours before starting the upload.
I'd like to prevent this happening by somehow refreshing the session on the upload page. My site's sessions are stored in files. Do I have to pull the data out of the current session, kill it, and start a new one with the same data in it? Or is there an actual "way" to do what I want?
Thanks