martyn
martyn

Reputation: 230

yii-user-management profile 404 error

I have finally got to the admin area of yii user management but now I click on the profile link

profile/profile/view/id/1 and there is a 404 error

Once again any help appreciated.

Upvotes: 0

Views: 434

Answers (1)

martyn
martyn

Reputation: 230

Placing this in the config/main.php resolved the issue.

'modules'=>array(
    'registration' => array(),
    'avatar' => array(),
    'role' => array(),
    'messages' => array(),
    'usergroup' => array(),
    'membership' => array(),
    'profile' => array(),
    'friendship' => array(),
    'user' => array()
     ),

This activates the module parts.(I am new at yii)

Upvotes: 1

Related Questions