Yii User Manager

I’m attempting to install YUM (http://www.yiiframework.com/extension/yii-user-management/) but after running through the install steps, and attempting to login, I get the message:

Fatal error: Call to a member function get() on a non-object in E:\websites\yii\public\protected\modules\user\models\YumUser.php on line 365

Any one any ideas…?!

the line 365 on my yiiuser.php is about: “$relations = Yii::app()->cache->get(‘yum_user_relations’);”

[color="#1C2837"][size=“2”]Your errors said that cant obtain a “get” member in a non-object, in this case the “non-object” would be the Yii::app()->cache who is maybe null because you’re not configuring the CACHE in your YUM instalation, so yii::app()->cache is null and throws an exception when trying to get something from it.[/size][/color]

please ensure the following setup piece code is in your main config setup file:

'components'=>array(





	'cache' => array('class' => 'system.caching.CDummyCache'),

Thank you very much, this has helped me.