About us
Inbuiltweb is a website and application development company building standard platforms to automate manual labour with web technology and bring a secured and organized internet to everyone.
The common PHP errors you can see on the front-end of your WordPress website are usually for warnings, notices, and displaying to ease debugging process. These are not like internal server error, syntax errors, or fatal errors, which stop your website from loading, but it is unprofessional to display these errors to your users.
Notices and warnings are the kind of errors that do not stop WordPress from loading your website but displays the errors to your audience instead.
The purpose of these errors are to help developers debug issues with their code. Plugin and theme developers need this information to check for compatibility and best practices.
However, if you are not developing a theme, plugin, or a custom website, then these errors should be hidden. Because if they appear on the front-end of your website to all your visitors, it looks extremely unprofessional.
Let’s take a look at how to easily turn off PHP errors, notices, and warnings in WordPress.
For this part, you will need to edit the wp-config.php file. Inside your wp-config.php file, look for the following line:
define('WP_DEBUG', true);
It is also possible, that this line is already set to false. In that case, you’ll see the following code:
define('WP_DEBUG', false);
In either case, you need to replace this line with the following code:
ini_set('display_errors','Off');
ini_set('error_reporting', E_ALL );
define('WP_DEBUG', false);
define('WP_DEBUG_DISPLAY', false);
Don’t forget to save your changes and upload your wp-config.php file back to the server.
You can now visit your website to confirm that the PHP errors, notices, and warnings have disappeared from your website.
If you are working on a website on local server or staging area, then you may want to turn on error reporting. In that case you need to edit your wp-config.php file and replace the code you added earlier with the following code:
define('WP_DEBUG', true);
define('WP_DEBUG_DISPLAY', true);
This code will allow WordPress to start displaying PHP errors, warnings, and notices again. If you found this content helpful, share to your friends.
Comments section
You need to be logged in to comment, Login or Register.Approved comments:
No comments yet! be the first to comment