'PHP Sessions getting mixed up across two seperate applications
I am utilizing PHP (7.3) sessions for user authentication.
Application # 1 has been in place for many years and working well.
I recently created Application # 2 on the same server on a different path.
If I log into application # 1, then navigate to App # 2, it is picking up the session for App # 1 and allowing access without logging in.
Can anyone offer any advise how to create distinct PHP sessions that are unique to each application?
Any help appreciated.
Thanks.
Daniel
Solution 1:[1]
If you are using apache, you can add this line to your projects in your .htaccess
file. Don't forget to change the domain name.
php_value session.cookie_domain exemple.com
This should split the session in your applications
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Harvey Dent |