import os from gluon import recfile session_filename = recfile.generate(session_id) full_filename = os.path.join(request.folder, 'sessions/', session_filename)
that's how I get the filename from a session id. Keep in mind that a user can have multiple sessions (logged in from different devices, browsers), so storing the session_id in db.auth_user might not be sufficient. In case sessions are stored in the database: would it be possible to add a field user_id to this table? then it would be really easy to get all the sessions from a specific user. I could not manage to enhance the web2py_session table with a user_id. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

