skip to Main Content

The problem is that I have a PHP script (A) that does signup, authorize Twitter, then the twitter calls back to a return PHP script (B).
In script (A), I set some $_SESSION variables, and in script (B) I will get it. Very straight foward.
I have tested it on my computersss, and it all works. I can see the session variables in script (B) set by script(A). so as my friends.
However, the most important thing is, my boss’ computer cannot see it! that’s the worst. he also tried on his computersss, still didn’t work at his end.

I even reboot and restart the server, but still, situation remains the same.

So, my question is, is there any kind of restriction that the server cannot set the session on a computer? or,.. in which situation, the server will fail to set the session?

Server: Apache 2.2.3. Using Plesk
PHP: 5.2.5

3

Answers


  1. Since it’s the session that fails, check that the client uses the same session on every request and not a new one. Check if the session ID is carried along properly. If you’re using a session cookie, check its validity settings and see if the session cookie is accepted by the client. See PHP Session/Cookie problems with Windows XP, Vista, IE and certain users.

    Login or Signup to reply.
  2. Maybe a stupid question, but anyway… does your boss block cookies on his computer?

    If that were the case and for some reason PHP was set up to not ‘fall back’ to passing the session ID via the query string (or the redirect stripped it somehow), that may be a problem.

    Login or Signup to reply.
  3. The session id is different on different computers because that’s the idea behind sessions. You assign a number to each visitor (the session id) and by that number you can identify users and store information in each users $_SESSION array. This array is available only to that single session/user.

    If you want something to store data for all visitors of your site, you might want to use a database or a serverside cache.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search