• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Applying a WordPress Error Log in WordPress Website

wperror500

New Pleskian
You must be annoyed by the errors coming to your website. However, every error has a solution. But if you know how error has arrived on the site and why it is occurring, then we can plan troubleshooting steps for it. Have you heard of the WordPress error log? Now we will talk about the error log and learn how to enable it on the website.

There is a time when you feel frustrated because of several errors on the WordPress website. But as we know, each error can be solved. The WordPress error log is one of the ways to detect errors.

Set an error log inside the wp-config.php file located on the root folder. Search the sentence that contains Happy blogging.'

Write two codes before this sentence given below.

define ('WP_DEBUG', true );

define( 'WP_DEBUG_LOG', true );

Save the file, and you have successfully implemented an error log in your website. Now in the future, if you encounter any error to the website, you can see the list of errors in log and solve them accordingly.
 
Back
Top