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

Is there a way to store/manage PHP sessions in a similar way that the IIS (Session State Service) ?

I want to have multiple front end web servers for an multi domain e-commerce platform and manage the sessions centrally. The idea being that is a server goes down users with cart contents will not have to start a new session when they are shifted to a another web server.

I know cookies and URL parameters could do it to a point but that's not answering the question.

share|improve this question
I think in this case the best idea would instead to save the session information in the database instead of the file system (I could be wrong though). – Ben Feb 25 '12 at 16:31
If you are looking for session replication this may help serverfault.com/questions/164350/… – reevesy Feb 25 '12 at 16:32
Thanks for the link, just what I'm looking for. – Master Styles Feb 25 '12 at 16:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.