I just reread this page (http://webpy.org/cookbook/mod_wsgi-apache). Does using web.webopenid imply that I'm using sessions? Could this be why my openid library isn't working on apache? Does this DiskStore keep things on disk instead of in memory as the openid library expects?
session = web.session.Session(app, web.session.DiskStore(os.path.join(curdir,'sessions')),) On Feb 15, 10:24 am, strattonbrazil <[email protected]> wrote: > I've followed a brief tutorial on getting openid working with my > web.py application. I've been running it as a cgi application through > apache, but now that I need to integrate openid, I find it > incompatible. The issue seems to be library doesn't like to start and > stop on every request, so if I run my app through the web.py web > server, openid works fine. If I run through apache I get key errors > looking up the session. Is there any way to run web.py's openid > library in a non-persistent environment? For example, can I use a > different store like mysql to keep track of the users? -- You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/webpy?hl=en.
