sorry for my english, but i will try to explain my problem - i have site that using a lot of subdomains when I run scenario in main subdomain www.site.com and add some information to The SESSION inside that scenario, then I redirected to subdomain.site.com, and here the SESSION is empty
this is my settings for cookie
$this->Cookie->domain = ".site.com";
$this->Cookie->key = md5('key');
$this->Cookie->path = '/';
i tried to save THE SESSION in files, but it doesn't helps
Configure::write('Session.save', 'cake');
i tried this ini_set('session.cookie_domain', '.site.com'); but it didn't helps too
any ideas?