我正在尝试登录我的Yii应用程序,并且遇到了这些多个错误,这些错误发生在我编辑用户身份时。只有当我输入正确的登录信息时才会发生这种情况,但如果输入的信息不正确,则会发出You are using the incorrect password
消息
Unknown authorization item "admin1".
出现在页面顶部。
然后我明白了:
答案 0 :(得分:0)
您正在尝试分配AuthManager不存在的角色
来自你的错误 Yii :: app-> authManager-> assign('admin1',$ this-> _id)
如果您使用CPhpAuthManager,您可以从此文件加载 http://www.yiiframework.com/doc/api/1.1/CPhpAuthManager
return [
'admin1' => [
'type' => CAuthItem::TYPE_ROLE,
'description' => 'Admin',
'children' => [
],
'bizRule' => null,
'data' => null
],