enalbingを使用すると、enteire環境で何が起こっているかを簡単に確認できますCI logs
。
に移動してconfig/config.php
これを編集します:
/*
|--------------------------------------------------------------------------
| Error Logging Threshold
|--------------------------------------------------------------------------
|
| If you have enabled error logging, you can set an error threshold to
| determine what gets logged. Threshold options are:
| You can enable error logging by setting a threshold over zero. The
| threshold determines what gets logged. Threshold options are:
|
| 0 = Disables logging, Error logging TURNED OFF
| 1 = Error Messages (including PHP errors)
| 2 = Debug Messages
| 3 = Informational Messages
| 4 = All Messages
|
| For a live site you'll usually only enable Errors (1) to be logged otherwise
| your log files will fill up very fast.
|
*/
$config['log_threshold'] = 0; //put this to 4
/logs
次に、/ applicationフォルダー内にまだフォルダーがない場合は、それを作成して追加775 chmod
します(logsフォルダーのみ)。
更新: apacheがそのフォルダー内に書き込めるようにするためにも必要です。chown apache:apache logs
ブラウザでアプリケーションを実行し、/logs
フォルダ内のlog.php
ファイルを確認します。ファイルにはが含まれますall the application errors
。