Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a problem similar if not identical to the problem in this thread: Randomly Losing Session Variables Only In Google Chrome & URL Rewriting

But all solutions in that thread don't work for me. I'm getting a strange behavior from only Google Chrome in my PHP/MySQL App. If I try it with Firefox, it works, but Chrome doesn't.

I navigate to some place in my shopping cart and at several places in the code I'll store session data. Don't worry about me starting the session or anything related to that, I've got 11 years in webapp dev, all is done fine.

In all browsers, I can var_dump($_SESSION) and get my data back, but in Chrome it doesn't keep the data. Also note that the session does get passed on, I can look in the network monitor and I see the cookie being sent and many other things related to session work but that one $_SESSION['last_viewed_element'] is not kept. I also can't seem to set anything else, all gets lost.

EDIT:

Problem resolved by switching from SESSIONS TO COOKIES...

share|improve this question
You haven't provided enough information. PHP is browser-agnostic by nature, you're either passing malformed cookies or using an abstraction layer you didn't mention that treats different browsers specially. – Incognito Nov 23 '11 at 19:27
I know this is what makes it the most stupid of all this, this session data is not used by anything else than my little mod and the data gets lost only on that browser for the same exact steps reproduced – Mathieu Dumoulin Nov 23 '11 at 19:43
I don't think anyone can help you with only the information you've provided. – Incognito Nov 23 '11 at 20:06
I've shown this bug to my other senior collegue and my even more senior programming boss and we are all stumped, it works with the same steps in Firefox but not in Chrome. I'm going to try safari on a windows pc to see if the bug could be related to webkit or only chrome. And yes, i know, it shouldnt incluence server side data, but something from chrome is creating that issue... – Mathieu Dumoulin Nov 23 '11 at 20:32
PHP identifies which session belongs to each "visitor" (browser) by storing a session identifier as a cookie in the visiting browser. On each subsequent visit the browser is supposed to send back the cookie in its request headers, where PHP looks up the session data on the server using the session id passed by the browser. It sounds like Chrome is not storing the cookie. Have you tried clearing cookies and making sure Chrome is properly accepting them? – Carl Zulauf Nov 23 '11 at 20:52
show 1 more comment

9 Answers

I had a very similar problem, in my case the problem was a 404 called due to a missing favicon.ico in Chrome only. The 404.php called the footer which altered the Session Variables. I hope that helps someone.

share|improve this answer
This totally helped me. What a strange bug, even if it was on my side. Really, really hard to debug. Thanks! – Matt James Dec 17 '12 at 16:31
Very strange, but that's true... quite impressed!! – Hola Soy Edu Feliz Navidad May 11 at 18:25

The issue could be your server is looking for favicons, if it is not found the server throws out a 302 redirect, which kills the session variables.

share|improve this answer
I understand that you don't have the rep at the moment to post this as a comment, but in the future, this might be best served as a comment. Answers generally should be something that you are pretty certain of that will solve the problem. – Fluffeh Sep 27 '12 at 10:30

I had this issue and was able to fix it. Chrome keeps looking for a .ico file and for some reason it was affecting it. Once I placed the .ico file in the root of the site everything started working. Crazy but true.

share|improve this answer
Nah, saw your post about that and it didn't fix it. Thanks anyway – Mathieu Dumoulin Dec 8 '11 at 21:30
@camilo Thank you! This is what was causing the loss for me, weirdest bug I have ever seen. – André Figueira Nov 14 '12 at 12:14

The code I was working with had the same issue. Solved by removing the following:

session_id($_GET['sid']);
session_write_close();
share|improve this answer

I solved the problem by removing the line:

base href="http://mysite/"

from the head tag in the HTML code.

share|improve this answer
1  
Use indentation (4 spaces) or backtick characters to format the HTML code. See the ? button for more. – McDowell Jun 29 '12 at 21:17
Thank you very much this is solve my problem – shox Jun 8 at 18:56

Looking on the following link: http://code.google.com/p/chromium/issues/detail?id=45582

I belive the issue is with PHP getting the request that did not match a file and then not properly handling 404's correctly. I had to tell Nginx to match any URL with favicon.ico and then return a 404.

Here is my line for Nginx:

 if ($request_uri ~ 'favicon') {
            return 404;
 }
share|improve this answer

I faced same problem, but on IIS with ASP.Net MVC. IE and Firefox were doing fine, only Chrome had the issue. A 404 error was clearing a cookie. This is how I found and resolved, and suggest others to try:

  1. On Chrome, Use Tools -> Developer Tools. Refresh the page so "Developer Tools" starts showing data.

  2. On Developer tools, Check Resources -> Cookies. Right after a successful log in, I had 2 cookies for the domain I was testing. On navigating to the page where I lost session, one of the cookies did not show up anymore. The screenshot was taken after the fix, showing both cookies: enter image description here

  3. Now check Network tab. Look carefully for any resource (html/image/css/js/...) which has any error. I had a 404 error for a font file. The 404 error was caused by missing mime type in IIS. fixing the 404 error cleared the problem in Chrome. The screenshot, again taken after fix, had all resources with OK status: enter image description here

The bonus was, investigating this problem helped me find out missing mime type in IIS, which was affecting more pages on all browsers.

share|improve this answer

In your php ini file try setting

session.save_path = /path/to/your/tmp

On some servers, sometimes the session needs an explicitly direct session file to save in a local directory or otherwise some weirdness happens.

share|improve this answer
The server sessions work fine, only chrome doesn't. All other browsers keep the session data, always worth a try... tx – Mathieu Dumoulin Nov 24 '11 at 13:14
up vote 0 down vote accepted

After all, no answer, problem still exists, i just made a switch to using cookies instead, if anyone ever gets that problem with chrome+wordpress at the same time, dont lose more time, switch to cookies...

share|improve this answer

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.