Session Conflict

I noticed that when I generate two different projects in two different folders, and publish the production to my server, if on the client I open the two projects simultaneously, I get session conflicts, a logged on user on project A is automatically logged on in project B, and if I log off a user in project A the same user is logged off in project B if both projects have the same username. How can I fix that?

Which version are you using? If >= v2025, you may change Config('COOKIE_PATH') in Global Code to a project specific path, e.g. /basepath/project1, /basepath/project2. (By default it is / so it will be shared by projects under the same domain.)