Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
1  
I have nothing to add except: best domain name ever. – mgroves Jul 17 '09 at 18:23
hehe, thx :) Maybe i sell it :) – Gomez Jul 17 '09 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 '09 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 '09 at 17:37
nevermind, works on /entry :) Thx! – Gomez Jul 22 '09 at 17:50

2 Answers

up vote 31 down vote accepted

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.

share|improve this answer
1  
Thanks for the good explication, Martjin! I have put the code into the /entry. Now it works. THX! – Gomez Jul 22 '09 at 17:48

A month ago, I ran into this issue. At first I thought it was a corrupted cookie jar as I could clean out the cookies and go.

However, it popped up again. This time I spent an hour going through it, watching what was sent, reviewing what safari sent back, and I found the problem.

In this case, I had an array of cookie values being sent to the browser after login prior to the redirect. The values looked something like 'user id', 'user full name', 'some other id', etc.

( yes, the id's are encrypted so no worries there )

My user full name was actually in a <lastname>, <firstname> format.

When safari was posting the cookie back to the server, everything after the comma after the lastname was dropped. It was only posting back values up to that point.

When i removed the comma the rest of the values started working just fine.

So it appears that if you send a cookie value that contains a comma, then safari doesn't properly escape that in it's internal storage. Which leads me to think that if they aren't properly escaping commas, then there are probably some security issues with safari's cookie handling code.

Incidentally, this was tested on Win 7 x64 with safari 4.0.5. Also I put up a web page at: http://cookietest.livelyconsulting.com/ which shows this exact problem.(I removed that test site)

IE, FF, and chrome all correctly set the cookie. safari does not.

share|improve this answer
2  
Chris: your issue is completely parser related. It has to do with how CFNetwork coalesces the Set-Cookie headers into one Set-Cookie header during HTTP parse time. Generally, Duplicate HTTP Headers can be coalesced into one header using a ', ' delimiter. Unfortunately, Set-Cookies has been an historically broken header. This was discussed at a recent IETF meeting. There is no issue with the internal representation of the cookies. – Mark Pauley Jul 6 '10 at 23:45
1  
@Mark Pauley: Glad to see an apple dev actively talking about how safari handles cookies. I ran across some of your correspondence at ietf.org/mail-archive/web/http-state/current/msg00645.html I think the fact that safari is the only browser exhibiting this breaking behavior is reason enough to pull the feature. – Chris Lively Jul 7 '10 at 0:34
1  
I'm not sure why anyone would down vote this nearly a year on; however, the behavior is still broke in Safari 5.0.3. – Chris Lively Mar 29 '11 at 14:22
Chris: check out the new cookie RFC. It's "the future". rfc-editor.org/rfc/rfc6265.txt – Mark Pauley May 25 '11 at 19:14
1  
@Mark Pauley: Thanks for the link! So it looks like things like a quote, semicolon, comma, and backslash should be avoided unless encoded in some way like using base64... – Chris Lively May 25 '11 at 19:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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