Reputation: 1009
I am using openerp web and server 5.15. Is there an way to kill the session of user when he/she closed the browser window?
If not, then is there any Javascript way then I can implement the same functionality?
Upvotes: 0
Views: 790
Reputation: 10119
I guess this has to do more with CherryPy (the Web Framework used in OpenERP) than with OpenERP itself. Try looking at this lines in openerp-web.cfg
:
tools.sessions.on = True
tools.sessions.persistent = False
Upvotes: 1