Hi fellow web.pyers, My question today is with regards to web.py's session/cookie settings. I'm building something that will have an arbitrary amount of domains which are rewritten using apache mod_rewrite to my core domain. The issue here is that currently (from what I've gleamed from the web.py API and this list) it is not possible to allow for sharing cookies across multiple domains. (Sub-domains work using the web.config.session_parameters['cookie_domain'] = '.mydomain.tld' )
I can get it to set cookies on multiple domains (that aren't shared) by setting web.config.session_parameters['cookie_domain'] = None. If you guys have any ideas regarding how this might be implemented (Maybe I can edit the setcookie method in webapi.py to iterate through a list of domains?). Thanks in advance for your thoughts. Best, Stephen -- 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.
