I have just installed the yii-user-management module but when I try to access it via browser I get
Fatal error: Call to a member function get() on a non-object in …./modules/user/models/YumUser.php on line 368
$relations = Yii::app()->cache->get('yum_user_relations');
Appreciate any help.
It seems like the yii-user-management module requires a
cachecomponent for it to work. So in your application config add the cache component asHere we are using
CDummyCachecopmponent which is, as its name says, acts as a dummy. You can replace it by any other cache components as described here