[Zope] Zope Logout Problem
Dieter Maurer
dieter at handshake.de
Wed Sep 10 23:46:34 EDT 2003
Praveen Kumar wrote at 2003-9-10 11:17 +0530:
> ...
> <dtml-call "RESPONSE.expireCookie('__ac')">
Cookie expiration is only effective if done
with the same "name", "path" and "domain" parameters
as the cookie definition.
Almost surely, the cookie definition used:
setCookie('__ac',...,path='/')
Therefore, you must use
expireCookie('__ac',path='/')
to delete it again.
Dieter
More information about the Zope
mailing list