首页 > 代码库 > 使用rbac时,You should configure "authManager" component to use database before ...
使用rbac时,You should configure "authManager" component to use database before ...
报错时是这样的:
解决办法:
在/basic/config/console.php和/basic/config/web.php里,配置组件。
console.php文件的内容为:
<?php $params = require(__DIR__ . ‘/params.php‘); $db = require(__DIR__ . ‘/db.php‘); $config = [ ‘id‘ => ‘basic-console‘, ‘basePath‘ => dirname(__DIR__), ‘bootstrap‘ => [‘log‘], ‘controllerNamespace‘ => ‘app\commands‘, ‘components‘ => [ ‘cache‘ => [ ‘class‘ => ‘yii\caching\FileCache‘, ], ‘log‘ => [ ‘targets‘ => [ [ ‘class‘ => ‘yii\log\FileTarget‘, ‘levels‘ => [‘error‘, ‘warning‘], ], ], ], ‘db‘ => $db, ‘authManager‘ => [ ‘class‘ => ‘yii\rbac\DbManager‘, ‘itemTable‘ => ‘auth_item‘, ‘assignmentTable‘ => ‘auth_assignment‘, ‘itemChildTable‘ => ‘auth_item_child‘, ‘ruleTable‘ => ‘auth_rule‘, ], ], ‘params‘ => $params, /* ‘controllerMap‘ => [ ‘fixture‘ => [ // Fixture generation command line. ‘class‘ => ‘yii\faker\FixtureController‘, ], ], */ ]; if (YII_ENV_DEV) { // configuration adjustments for ‘dev‘ environment $config[‘bootstrap‘][] = ‘gii‘; $config[‘modules‘][‘gii‘] = [ ‘class‘ => ‘yii\gii\Module‘, ]; } return $config; ?>
使用rbac时,You should configure "authManager" component to use database before ...
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。