I ended up with patching Session class by adding this:

    self.session_id = web.cookies().get(cookie_name)

    if self.session_id is None:
        try:
            self.session_id = cgi.parse_qs(web.ctx.env['QUERY_STRING'])
['sessid'][0]
        except:
            pass



On Jan 6, 11:51 pm, andrei <[email protected]> wrote:
> I'm using fancyupload, and it doesn't support storing session id in
> cookies, so i need to add it to url like this:
>
> ?sessid=70de5bc4s246a3825c4a0b1eb6c2678625d23e39
>
> How do I load the session data in this case?
-- 
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.


Reply via email to