wordpress debug mode enabled

Enable WordPress Debug Mode

  1. Access the WordPress files on your server using an FTP client or file manager.
  2. Locate the wp-config.php file in the root directory of your WordPress installation.
  3. Open the wp-config.php file in a text editor.
  4. Find the line that says "/ That's all, stop editing! Happy blogging. /" or similar.
  5. Just above that line, add the following code: define( 'WP_DEBUG', true );
  6. Optionally, you can also add the following code to log errors to a file: define( 'WP_DEBUG_LOG', true );
  7. Save the wp-config.php file and upload it back to your server, overwriting the existing file if necessary.
  8. WordPress debug mode is now enabled, and you should see any PHP errors or notices displayed on the site, or logged to the specified file.