I have been working on converting my websites session information over from flatfiles to database sessions for a variety of reasons, the main reason being I use the same database of users for both the Administration panel and user panels.
The administration panel is set on a subdomain of our main domain, i.e;
domain.com staff.domain.com
Both of the domains use the exact same session handler, however when it comes to actually creating the session on the sub-domain and normal domain, two different session_ids are created for the same computer / person.
Is this behavior normal? Is there a way I can make it so logging in the User Panel will also allow me to use the staff panel without logging in as the session is already created?
Thank you