vote up 0 vote down star

Hi all,

I found a strange cookie problem on safari. If you surf to http://2much.ch you can enter with FF/IE and surf inside the site.

But if you use safari, you can enter only once; you can't surf inside the site. I found that Safari doesn't set the entered cookie, but FF/IE does.

What is wrong here?

flag
I have nothing to add except: best domain name ever. – mgroves Jul 17 at 18:23
hehe, thx :) Maybe i sell it :) – Gomez Jul 17 at 18:39
Perhaps you can explain a bit about the cookie setting part. For example: is it done by a Plone add-on or custom code? – Mark van Lent Jul 19 at 8:53
The cookie is set by my custom code. It has to be set when you enter, not on 2much/entry. In replay to the Answer i post some code. – Gomez Jul 22 at 17:37
nevermind, works on /entry :) Thx! – Gomez Jul 22 at 17:50

1 Answer

vote up 0 vote down check

It looks like you hit a Safari bug here; you are redirecting any visiting browser to /entry while setting the cookie at the same time, and Safari is ignoring the Set-Cookie header when encountering the 302 HTTP status:

$ curl -so /dev/null -D - http://4much.schnickschnack.info/
HTTP/1.1 302 Moved Temporarily
Server: nginx/0.7.61
Date: Sun, 19 Jul 2009 12:20:49 GMT
Content-Type: text/html;charset=utf-8
Connection: keep-alive
Content-Length: 14260
Content-Language: de
Expires: Sat, 1 Jan 2000 00:00:00 GMT
Location: http://4much.schnickschnack.info/entry
Set-Cookie: colorstyle="bright"; Path=/; Expires=1248092449.12
Set-Cookie: _ZopeId="73230900A39w5NG7q4g"; Path=/

Technically, this would be a bug in Apple's Foundation Classes, I've found a WebKit bug that states this is the case.

I suppose the workaround is to set the cookie not in index_html but in entry instead.

link|flag
Thanks for the good explication, Martjin! I have put the code into the /entry. Now it works. THX! – Gomez Jul 22 at 17:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.