gpt4 book ai didi

yii2 - 如何在Yii2中启用 Debug模式?

转载 作者:行者123 更新时间:2023-12-04 03:02:16 25 4
gpt4 key购买 nike

我有基本版本。我读了http://www.yiiframework.com/doc-2.0/yii-debug-module.html文章,但我不明白在哪个文件中插入代码,其中包括调试程序?

我搜索了信息,发现在config/web.php中
现在,我在YII_ENV_DEV部分中的debug中编写了这样的代码:

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' => ['85.89.139.124'],
];

$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', '::1'],
];
}

app/web/index.php
 <?php
defined('YII_DEBUG') or define('YII_DEBUG', true);
defined('YII_ENV') or define('YII_ENV', 'dev');

但这不起作用,我只看到404错误。

最佳答案

检查您的app/web/index.php并确保您拥有

 <?php
defined('YII_DEBUG') or define('YII_DEBUG', true);
defined('YII_ENV') or define('YII_ENV', 'dev');
........

关于yii2 - 如何在Yii2中启用 Debug模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45087830/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com