2017-07-13 10 views
1

私は基本バージョンを持っています。私はhttp://www.yiiframework.com/doc-2.0/yii-debug-module.htmlという記事を読んでいますが、どのファイルにデバッグを含むコードを挿入するのか分かりません。Yii2でデバッグモードを有効にするにはどうすればよいですか?

私は、情報を検索し、設定/ web.php に今、私はこのようなセクションYII_ENV_DEVでデバッグそれに書いたことが判明:

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

<?php 
     defined('YII_DEBUG') or define('YII_DEBUG', true); 
     defined('YII_ENV') or define('YII_ENV', 'dev'); 
index.phpのアプリ/ウェブ/

しかし、それは動作しないと私は404エラーが表示されます。あなたのアプリ/ウェブ/ index.phpの中

答えて

1

チェックとは、あなたが

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

はいあることを確認してください。これらは私がそこに設定した値です。 – fosh4455

関連する問題