Right, I'm here after fiddling around a lot with webpy (0.37) source code and extensive search on google and exhaustive trying myself.
The problem is I simply can't get sessions to write in my webpy. I'm using DiskStore and I'm doing something like this on my main page (init.py)
app = web.application(mappings, locals())
sessionPath = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'sessions')
web.config.session_parameters.update(cookie_name="test_cookie", cookie_domain="127.0.1.1",cookie_path=sessionPath,timeout="60")
session = web.session.Session(app, web.session.DiskStore(sessionPath))
A) My sessions dir has a 777 on it. But no values seem to get saved. My sessions dir is always empty. No file is ever created.
B) I tried a couple of classes like these
def init():
url = '/'
def GET(self):
// code
session['user'] = 'test'
def other():
url = '/session'
def GET(self):
return session.get('user')
I go to / first and then /session. But I get nothing in other. Obviously because I couldn't get sessions to write.
C) And when I try to do session.kill() it throws an error saying self.session_id not found.
Sorry for the lengthy post. The documentation aint that great and the groups aren't active too. I tried to fiddle around with the source code as well, but no luck!
[EDIT] Well I got all of it working. For anyone else who is stuck up. I'll explain the error I've made. Actually kinda stupid.
It was the reloading error. When the page reloads the session is somehow not persisted. I put the values in session._config as explained in webpy documentation.
if web.config.get('_session') is None: session = web.session.Session(application, web.session.DiskStore(sessionPath)) web.config._session = session else: session = web.config._session
And it worked. :-) All though unlikely that someone will make a mistake as elementary as this, well ..just a heads up!