最近、ある読者から素晴らしい質問を受けました:WordPressのPHPエラーをオフにするにはどうすればいいですか?
これは、私たち自身のサイトでも取り組まなければならなかったことであり、信頼できるオンラインプレゼンスを維持するためにいかに重要であるかを私たちは知っている。
PHPの警告や通知は、開発者がコードの問題をデバッグするのに役立ちますが、サイト訪問者すべてに表示されると、非常にプロらしくありません。
この投稿では、WordPressのPHPエラーを簡単にオフにする方法を紹介します。
WordPressでPHPエラーをオフにする理由とタイミングとは?
WordPressサイトで見られるPHPエラーは通常、警告や通知です。これらは、内部サーバーエラー、構文エラー、致命的なエラーのようなものではありません。
通知と警告は、WordPressがサイトを読み込むのを止めない種類のエラーです。詳しくは、WordPressが実際に裏でどのように動作しているかをご覧ください。
これらのエラーの目的は、開発者がコードの問題をデバッグするのを助けることです。プラグインやテーマの開発者は、互換性やベストプラクティスをチェックするためにこの情報が必要です。
しかし、カスタマイザーやプラグイン、サイトを開発していないのであれば、これらのエラーは非表示にすべきです。なぜなら、サイトのフロントエンドですべての訪問者に表示されると、非常にプロらしくないように見えるからです。
WordPressサイトで上記のようなエラーが表示される場合は、テーマやプラグインの開発者に連絡してください。エラーが消えるような修正プログラムがリリースされるかもしれない。一方、これらのエラーをオフにすることもできる。
WordPressのPHPエラー、通知、警告を簡単にオフにする方法を見てみましょう。
WordPressのPHPエラーをオフにする
この部分については、wp-config.phpファイルを編集する必要があります。
wp-config.phpファイルの中で、以下の行を探してください:
define('WP_DEBUG', true);
この行がすでにfalseに設定されている可能性もある。その場合、次のようなコードが表示される:
define('WP_DEBUG', false);
どちらの場合も、この行を以下のコードに置き換える必要がある:
ini_set('display_errors','Off');
ini_set('error_reporting', E_ALL );
define('WP_DEBUG', false);
define('WP_DEBUG_DISPLAY', false);
変更を保存し、wp-config.phpファイルをサーバーにアップロードすることを忘れないでください。
これで、PHPエラー、通知、警告がサイトから消えたことを確認できます。
WordPressでPHPエラーをオンにする
ローカルサーバーや ステージングエリアでサイトを作成している場合、エラーレポートを有効にしたい場合があります。その場合は、wp-config.phpファイルを編集し、先ほど追加したコードを以下のコードに置き換える必要があります:
define('WP_DEBUG', true);
define('WP_DEBUG_DISPLAY', true);
このコードにより、WordPressはPHPエラー、警告、通知を再び表示するようになります。
この投稿が、WordPressのPHPエラーをオフにする方法を学ぶのにお役に立てば幸いです。WordPressの最も一般的なエラーとその修正方法のリストや、専門家が選ぶ最高のウェブデザインソフトウェアもご覧ください。
If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.
A Owadud Bhuiyan
If I keep the debug true, but false the debug display. Will the error show on website?
define(‘WP_DEBUG’, true);
define(‘WP_DEBUG_DISPLAY’, false);
WPBeginner Support
The debug display being false would mean that the errors would not be visible on the front-end of your site.
管理者
Gregster
Resolved my issue instantly – waited over a week from hosting support. Thanks
WPBeginner Support
Glad our guide was able to help!
管理者
Nayanjyoti kalita
This problem is solved.
Thank You
WPBeginner Support
Glad our guide was helpful!
管理者
James Edwards
Cheers! This has saved my bacon.
WPBeginner Support
Glad our guide could help!
管理者
Janet
Thank you so much! This fixed my problem in 30 seconds that I have been waiting for my hosting to fix for over 12 hours.
WPBeginner Support
Glad our guide could help. As a reminder, this hides the error from your site but you would want to try to resolve the root cause of the error you were seeing.
管理者
shashi Bhushan shukla
Thanks a lot. This has solved my issue.
Karan
I have already done false in all . But in healthsite status always show WP debugging mode is enabled. please suggest me something
WPBeginner Support
You likely have it set to true in another section of the code, you likely want to reach out to your hosting provider for them to take a look and assist you.
管理者
Amanda
How do I turn off warnings and notices and just leave the errors?
WPBeginner Support
We do not have a recommended method for that at the moment.
管理者
Kiran
Its not working. I am using wordpress 5.2.2
WPBeginner Support
You would want to ensure wp_debug isn’t already added in your file somewhere else.
管理者
Satinder
Thanks, it worked although i can see log file still being generated in cpanel
WPBeginner Support
You may want to check with your hosting provider to see if they have a log set up from their end
管理者
Owen Carver
That works, thank you!
WPBeginner Support
You’re welcome
管理者
Mohsin Alam
Saved me from a trouble! Thanks to WPBeginner for always helping WordPress developer.
WPBeginner Support
Glad our article could help
管理者
Rebecca P
I’ve been advised to turn these notices off and was directed to this article to help me with that. However, I do not have the ‘wp_debug’ line in my config file. Do I just add it in? And if so whereabouts in the file?
Thanks!
WPBeginner Support
You may want to ensure you did not miss it in your current file but, you would place the code at the bottom of the file
管理者
David
Thanks! This page was very helpful to me.
WPBeginner Support
Glad our article was helpful
管理者
Rei
Thanks a lot for this
WPBeginner Support
You’re welcome, glad you like our content
管理者
Zeeshan
after a 1 day struggle, your solution Really helped he fix the issue
WPBeginner Support
Glad our recommendation could help
管理者
Gary Guss
Clueless newbie! I’ve changed the wp-config.php file and saved it .. Do I have to upload this file to the server to get it to work? How do I do that Using Cpanel File manager.. Not seeing any debug suppression so I guess its somehow not picking up the edited file.. Halp Halp!
Thanks,
GG
WPBeginner Support
If you’re using the file manager your host offers, and directly edited and saved through that without downloading the file then the changes should be active on your site and you would want to check with your host for why the changes may not be getting applied to the file.
管理者
genfoch01
ok so i know this is old, but i’m stumped. i am still getting php errors.
Fatal error: Uncaught Error: Call to undefined function get_header() in /path/to/wordpress/wp-content/themes/mytheme/index.php:5 Stack trace: #0 {main} thrown in /path/to/wordpress/wp-content/themes/mytheme/index.php on line 5
note that this issue was caught by a pen test and i was asked to suppress the error to avoid full paths being reveled. Any ideas would be helpful
WPBeginner Support
That is a fatal error for why it is still being displayed, you would want to either change themes or let your theme’s support know about the error to let you know how to fix it.
管理者
Mzu
I need a solution on wordpress customizer that is not uploading l am stuck for weeks can’t customise any theme
WPBeginner Support
You may want to try disabling your plugins to see if it is a conflict due to one of those or one of the other recommendations in our troubleshooting article: https://www.wpbeginner.com/beginners-guide/beginners-guide-to-troubleshooting-wordpress-errors-step-by-step/
管理者
Aditi
Thank you so much. You are a savior. It worked. All warnings gone.
Alfredo
Thanks a lot. This has solved my iusse.
Regards.
Abdulrahman
I faced the same problem after upating woocommerce plugin and the I used your method
all erroers disappeared, however, I cannot log into the dashboard where it wp-admin shows a blank page
is there any solution for that
Thank you