Forum Moderators: coopster
Sessions will be unique already for the file names it keeps
The session ID is unique, but the cookie name referring to the session data is not - wherein lies the problem.
I am aware of how to generate unique IDs, the problem is propagating the information from page to page. When talking about session data it is not that easy. Even using a buffer I can't seem to get the cookie name to carry.
I've never had this problem before because I assign a unique cookie name to each individual app. In this case I don't have that option.
I've gone through a few different trials using session_name(), but it is not possible. To do so requires that the unique name be generated and then session_name() to be called prior to session_start on each subsequent page. I have not been able to successfully pass the unique cookie name. If session_name() is not called specifying the newly generated name the session will resort back to the default and the confusion starts again.
I've tried using buffers and cookies but both fail because I can't send/get info from the client prior to session_start.