The default session timeout is 1 hour and is set in seconds by adding a line like this to a model such as db.py after auth = Auth()
auth.settings.expiration = 3600 # default 1 hour but the user would have to sit idle on the app for over one hour and then click next or prev to finish a signup. Is that a possible situation gien people sitting at their desk get phone calls or other distractions or is this immediate during normal work flow? What is your environment? I am used to running from the command line on Linux when in development mode and so starting with rocket as the web server as in python web2py.py from the command line I can just add print statements in the controller to try and follow what is going on. print response.session_id, other_variables_as_needed

