PHP sessions in a load balancing cluster – how?

You could set PHP to handle the sessions in the database, so all your servers share same session information as all servers use the same database for that.

A good tutorial for that can be found here.

Leave a Comment