I have a Classic ASP app in a subdirectory of my Laravel app, which is authenticated by the Laravel session. In 4.0, I would get the value of the session cookie, which would be the session id. Then I would check in the database if it existed = authenticated.
Now in 4.1+, how do I convert the contents of the session cookie to find the session id to match against the session table's id column?
I'm using the database session driver
Apparantly, Laravel encrypts any cookie it makes and removes any unencrypted cookies every response.
https://github.com/laravel/framework/issues/3440#issuecomment-53048026
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community