Hi Wiseion3,
As per your suggestion I added following code in both backend/config/main.php and frontend/config/main.php :
'session' => array (
'class' => 'system.web.CDbHttpSession',
'connectionID' => 'db',
'sessionTableName' => 'Session',
),
and created table like this :
CREATE TABLE IF NOT EXISTS `Session` (
`id` char(32) COLLATE utf8_unicode_ci NOT NULL,
`expire` int(11) DEFAULT NULL,
`data` blob,
PRIMARY KEY (`id`)
)
But still no luck, could you please elaborate your solution?
Thanks,
Wiseon3, on 12 February 2013 - 10:46 AM, said:
You need to change your session storage from PHP's default to one that can be shared between domains/subdomains, for example
CDbHttpSession.