yii2框架,开启debug后没有显示调试工具栏,线上环境不显示,但是线下是可以显示的如图,线下显示了,线上无,代码上传到线上后,只修改了数据库配置,其他未改
我在配置中web.php中配置了ip,然后也没有作用,如下
if (YII_ENV_DEV) {
// configuration adjustments for 'dev' environment
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = [
'class' => 'yii\debug\Module',
// uncomment the following to add your IP if you are not connecting from localhost.
'allowedIPs' => ['127.0.0.1', '我的IP'],
];
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = [
'class' => 'yii\gii\Module',
// uncomment the following to add your IP if you are not connecting from localhost.
'allowedIPs' => ['127.0.0.1', '我的IP'],
];
}
1 回答
- 1 回答
- 0 关注
- 1580 浏览
添加回答
举报
0/150
提交
取消