Suppose in the area ( app.domain.com ) I set up the following session:
Session::put('test', 'value');
Then in another area (e.g. news.domain.com ) I want to get this session value. Please note that the other domain contains ON DIFFERENT SERVER , but the same domain name is still there.
My question is: will Session::get('test') available in news.domain.com if I set the laravel configuration file to domain => '*.domain.com' ?
session cross-domain laravel-4
user2002495
source share