In running a fresh install of Yii and the latest .zip from the site here, I ran into all kinds of objects not found issues doing any user admin functions.
I found mention of adding session info to /config/main.php, and this has appeared to resolve my issues.
Maybe it gets added to future versions of the tutorial?
In running a fresh install of Yii and the latest .zip from the site here, I ran into all kinds of objects not found issues doing any user admin functions.
I found mention of adding session info to /config/main.php, and this has appeared to resolve my issues.
Maybe it gets added to future versions of the tutorial?
Here's the snippet I added:
'session' => array( 'sessionName' => 'SiteSession', 'class' => 'CHttpSession', 'autoStart' => true, ),