Jump to content

PHP session


MiCR0

Recommended Posts

This is a very odd problem I am facing here any advice would be great.

 

I am using DB eSession http://phpclasses.fonant.com/browse/package/1624.html

 

The session works on some computers but not all its very odd.

it working on my FF and IE fine

But i go onto the other computer same versions of FF & IE I login and then it go's to the loged in page however if you then go to any other page or refresh that page the session is lost.

Have reset all IE anf FF settings on them to default all.

So far it working on 2 computers out of 5 any ideas would be great as I am totaly losted.

Link to comment
https://forums.phpfreaks.com/topic/176964-php-session/
Share on other sites

A session consists of two parts, the session id from the browser and the corresponding session data on the server. By default, the session id is passed between page requests using a cookie.

 

Do sessions work without using the DB eSession, because the only thing that it should be doing is to change the session save handler from the built in file handler to a database save handler. There is actually only one real reason for using a database session save handler, when you need to share session data between multiple web servers? Are you planning on doing any load-balanced web servers?

Link to comment
https://forums.phpfreaks.com/topic/176964-php-session/#findComment-933058
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.