PHPエラーログのセットアップ
PHPエラーのトラブルシューティングを行う際は、PHPログを確認することをお勧めします。 PHPログを確認できない場合は、次の手順でログを設定してください。
Note: For WordPress and Managed WordPress error logging please see WordPress のデバッグモードを有効化してエラーを表示する。
- サイトに変更を加える前に、必ずサイトをバックアップしてください。
- PHP初期化ファイルを見つけます。
- Edit the file. (Web Hosting (cPanel) / Windows Hosting (Plesk) / VPS Hosting)
- Place the following line in your initialization file:
error_log = /path/to/your/webroot/php_error.log
- error_logは、ログを新しいファイルに出力するようWebサーバーに指示するPHP関数です。
/path/to/your/webroot/php_error.log
is the path to your new log.
- Make sure to replace
/path/to/your/webroot
with the actual path your hosting account uses. - What is my absolute path? (
Web Hosting (cPanel) / Windows Hosting (Plesk) ). - ホスティングのWebルートにあるphp_error.logという名前のファイルを作成します。
- Restart your PHP processes.(
Web Hosting (cPanel) / Windows Hosting (Plesk) ).
次のステップ
- Review your php_error.log for error details. (
Web Hosting (cPanel) / Windows Hosting (Plesk) / VPS Hosting )
詳細
- PHPエラーログの詳細については、 PHP.netをご覧ください。