I have multiple subdomains and i\'m trying to use the sessions across subdomains.
http://example.com http://subdomain.example.com
I have al
From the following solution : Sharing sessions
Both the cookie_domain and cookie prefix has to be set
$config['cookie_domain'] = ".example.com"; $config['cookie_prefix'] = "example_";