Hi guys,
so I am currently developing a simple web app. My system is a Mac OSX
Mavericks and the webpy code uses sessions.
To initialize the code I use:
store = web.session.DiskStore('sessions')
session = web.session.Session(app, store, initializer={'login': 0,
'privilege': 0, 'userid': 0})
Everything works fine. In my login routine I can call session data without
any problems (also a function to check if the user is logged in).
But after
raise web.seeother('/userScreen')
The session data disappears. But the session ID is the same.
To show you this I called
print session.__dict__
Prior to web.seeother and after. These are the results:
Prior: {'privilege': 1L, 'ip': u'127.0.0.1', 'login': 1, 'userid': 19L,
'session_id': 'bc84e8f4713034fb48756d6c8850eaf22255819b'}
After: {'privilege': 0, 'ip': u'127.0.0.1', 'login': 0, 'userid':
19L, 'session_id': 'bc84e8f4713034fb48756d6c8850eaf22255819b'}
Does anyone have an idea. What could I do? Is this a known issue?
Thanks in advance!
--
You received this message because you are subscribed to the Google Groups
"web.py" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/webpy.
For more options, visit https://groups.google.com/d/optout.