Forum Moderators: coopster
I have a common database of members who may register with either of the websites and use the same login details to access the another site services.
I am using PHP session tracking and would like to know whether it is possible to maintain and use the session between the two sites hosted on different servers so that user has to login once only and may navigate through any of the website with the same session.
Please advise.
you could do it like this... when you save a user's session details on your own server, instead of putting the file inside the /tmp folder, or however you've got it set up at the moment, log it in a database instead. and then give both sites access to the same database.
Can you please guide me how to do that?