Hi- This is, unfortunately, the way it is supposed to work. To expire a cookie, you need to send a Set-Cookie header with an identical name and path and a date in the past. I don't know how Zope handles setting cookies, as I have only ever had to read cookies. I imagine you would need to call something like RESPONSE.cookies.expire("name", "/path"), but it probably is a different function name. --Quentin On Tuesday, August 20, 2002, at 09:40 PM, KevinL wrote:
Heya,
Is it possible to have two cookies with the same name and different paths? It seems to me that ZPublisher/HTTPResponse.py is keying cookies off the name, and storing things like the path under that.
Came up because I'm holding different cookies for different paths in a site - __ac, to be exact - and the userfolder I'm currently using sets a base-level __ac, while I want to set a /path __ac. Trying to expire both is proving difficult - I can expire one or the other, it seems.
KevinL
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )