Daniel Hunter
Daniel Hunter

Reputation: 2866

PHP Sessions and Firefox / Chrome

I have a session stored in a specified folder. I am calling all the right starts but in firefox and in chrome the session id is right but no data is retrieved. works in IE

This is what the session data looks like:

pid|s:3:"101";lcid|s:7:"1016553";gcid|s:7:"1019652";company|s:24:"RS Graphics Sign Company";

I have tried specifying the save path and not specifying it. I am running tests on a very simple script.

Has anyone ever run into an issue like this?

Upvotes: 0

Views: 201

Answers (1)

Gustav Bertram
Gustav Bertram

Reputation: 14901

My suggestion is that you take a look at the packets directly, to see what is happening to the cookies.

Install Wireshark on your client machine, and connect to a remote web server. (Wireshark will ignore localhost traffic.)

Upvotes: 1

Related Questions