2
Hello, I have a basic authentication system using Session for a file-upload system However, when some user with slow internet puts many files in the upload queue (10 or more files), and each file would take 1 hour to be uploaded, it ends up being disconnected after 1 or more hours
I have tried to solve this problem using the directives
Session.gc_maxlifetime
Session.cookie_lifetime
And also the function session_set_cookie_params.
However, even using them, the user continues to be dropped after 1 hour or a little more and can never complete the rest of his uploads
(Since the session is destroyed by inactivity on the page, although it keeps uploading the file)