I have a web application made in Code igniter. What it basically does is -
- user logs in to the application
- User can do various tasks, one of which is timer based tasks. There is a button which starts the javascript timer
- While timer is running he performs certain tasks, and once he is done, he stops the timer. The timer may run for few minutes to few hours.
My Question - While JavaScript timer is running, can we prevent session timeout, so that users are not logged out and their progress is not lost?? My initial thought is that it can't be, at least there isn't an easy way because we are dealing with Javascript timer (Client) and the Session timeouts (server).
Thanks in advance