31 Jul
2002
31 Jul
'02
9:36 p.m.
Mark Bucciarelli writes:
Is it possible to have a python script that does this:
response = context.REQUEST.RESPONSE if someCondition: response.expiresCookie('mySitesCookie', path='/') return response.redirect('aPageTemplate') This should work.
Are you sure, the cookie is set with "path='/'"? "expiresCookie" must be called with the exact path "setCookie" has been called. Dieter