Yii2 开启debug没有显示调试工具栏(线上环境)
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'],
];
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先检查一下线上服务器的
web/index.php
是否确实有这两行:因为一般情况下
web/index.php
是不放在版本控制中的。另外,冒昧的问一下,'我的IP' 是公网IP吗?不是
192.168
开头的IP吧?