I have Laravel 4 application with custom login on example.com, and my session driver is database.
On subdomain example custom.example.com I have a custom PHP application that should use same user base and share this login.
Also I have another subdomain l4.example.com with another Laravel 4 application sharing the same user base and login, and here I can use same session, but with custom application on custom.example.com when I try to do
var_dump($_SESSION);
I get Undefined variable: _SESSION.
So is there a way to share Laravel 4 session with custom PHP application over subdomain
custom.example.comtry to check if the session is active or not from Laravel database. Also See Laravel Database Sessions