Cara menggunakan disable error message wordpress

WordPress has a built-in method of debugging that works great for developers. It offers a warning message detailing what file is at fault and what line to look at. However, the PHP error messages often look terrible from a visitor’s perspective in WordPress.

Luckily, we can change this

In this tutorial, I’m going to show you how to disable the warning message in WordPress when it comes to debugging. It’s a simple bit of code you can copy and paste into your website.

If you need more help working out your WordPress Errors, our support crew is waiting to help you resolve any issues. If you are not yet hosting with one of the Fastest WordPress Hosts around, then maybe you should consider it…. and yes we also offer free migration of your site from your old host to us.

What Causes these PHP Error Messages?

A lot of the time, line warnings in PHP files happen because of outdated plugins or themes. This is because core files will often change with WordPress updates, which makes some parts of code obsolete.

Themes and plugins can also throw PHP warning messages when used with something that is incompatible. It’s possible for two current plugins which work well by themselves to have issues when paired together. This is because every developer is different, and not everyone uses the same syntax when developing website files.

Luckily, these warnings don’t necessarily mean the site is broken. They just look ugly to an unsuspecting visitor. Sometimes the developer will create an update to fix the warning, but it’s not always quick.

PHP warnings in WordPress look something like this:
/wp-content/plugins/siteplugin.php on line 30

This doesn’t mean the plugin is bad. It just means part of the file is incompatible with WordPress, the theme, or another plugin that is in use.

Unless you plan on fixing the coding yourself, it’s probably better to simply disable the warning messages altogether. If the tool isn’t completely broken or unusable, then the warning may not completely apply to you.

Step 1: Access the File Manager

This next part involves editing the wp-config.php file of WordPress to disable PHP warnings.

I strongly suggest you create a backup of your site before making any coding changes. This will protect you in the event something goes wrong by giving you a quick method to restore the site.

You have several methods available for accessing the wp-config.php file of WordPress. A lot of people like using FTP applications like FileZilla to access website resources.

For this tutorial, I’m simply going to use the File Manager in cPanel.

Step 2: Locate and Enter the wp-config File

Access your website by clicking the “public_html” folder in the directory.

Select the wp-config.php file and click, “Edit.” It’s located in the top toolbar of File Manager.

Click the “Edit” button on the new window. This is just a message allowing you to change the character encoding of the editor. You will not need to make any changes to this section.

Step 3: Edit the wp-config File

By default, WordPress will show visitors PHP error messages, we can change this by replacing a single line of code. Scroll down and find the line that has this code:

define['WP_DEBUG', false];

You may see “true” instead of false. Either way, you’re looking for the “WP_DEBUG” portion of the wp-config.php file.

Replace the 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];

Click the “Save Changes” button in the top right.

Once the file is saved, this will disable the PHP warnings in WordPress.

Re-enabling PHP Error Messages In WordPress

Sometimes, it is very helpful to show PHP errors in WordPress, especially when troubleshooting an issue. Thus, if you want to enable PHP errors again, edit the lines you added in the previous step by pasting this instead:

define['WP_DEBUG', true];
define['WP_DEBUG_DISPLAY', true];

Customizing Your Website

Hiding WordPress warnings are only one piece of a massive customization puzzle within WordPress. With a simple copy-and-paste code, you can make a variety of changes without having previous experience in website development.

Just make sure you’re copying good snippets of code. Something that is obsolete or improperly created could easily crash a website.

How often do you edit coding in your WordPress site? Where is your favorite place to go for code snippets?

Bài mới nhất

Chủ Đề