Yii2 开启debug没有显示调试工具栏(线上环境)

yii2框架,开启debug后没有显示调试工具栏,线上环境不显示,但是线下是可以显示的
如图,线下显示了,线上无,代码上传到线上后,只修改了数据库配置,其他未改

https://img4.mukewang.com/5c8f3e2000014d9b08000291.jpg

我在配置中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'],
    ];
}

繁星coding
浏览 1584回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP