[Zope] Cookie problem with Netscape

Dieter Maurer dieter@handshake.de
Fri, 24 Aug 2001 23:36:21 +0200 (CEST)


Schmidt, Allen J. writes:
 > I have a few pages and the cookies work on IE but not for Netscape 4.77.
 > 
 > There are ads on the page that prompt to set a cookie but the Zope cookies
 > don't set. Now, if I use expireCookie, I am prompted to set a cookie
 > "varName='deleted'". Just don't get it...
 > 
 > <dtml-call
 > "RESPONSE.setCookie('userisvalid',freduser,domain='.ourdomain.com',
 > path='/MyPath')">
 > 
 > 
 > 'freduser' is a Zope variable name passed in from a form.
 > 
 > Any thoughts??
"domain" must have some minimal length...
Some characters are not allowed in a cookie value (or name)...
The cookie is only sent to pages having "path" as prefix...


Dieter