• Carin

    (@sparksfreebies)


    Even though I have installed an SMTP plugin I still do not get the critical error email from wordpress, containing the plugin conflict and recovery mode link, This leads to more work than necessary when trying to recover. Will debug show the plugin needed to be disabled, or maybe is that “error” email stored in the wordpress database somewhere so i could access it via phpMyAdmin?

    I would appreciate any advice!

Viewing 1 replies (of 1 total)
  • Hello @sparksfreebies typical notifications regarding your website are usually sent to the administrative email attached to your website. However, if you have the technical know-how, you can turn DEBUG following the steps below (Turning the debug option enables the errors to be displayed on the frontend);

    1. Access Your WordPress Files: You’ll need to access your WordPress installation files. This can be done using an FTP client or through your hosting control panel’s file manager.
    2. Locate the wp-config.php File: Within your WordPress installation directory, find the wp-config.php file. This file contains important configuration settings for your WordPress site.
    3. Backup the wp-config.php File (Recommended): Before making any changes, it’s a good practice to create a backup of the wp-config.php file. This ensures you can revert to the original settings if needed.
    4. Edit the wp-config.php File: Open the wp-config.php file using a text editor of your choice. Look for the following line of code:phpCopy codedefine('WP_DEBUG', false); Change the false value to true:phpCopy codedefine('WP_DEBUG', true); You can also add the following lines to the file to enable more detailed debugging information:phpCopy codedefine('WP_DEBUG_LOG', true); define('WP_DEBUG_DISPLAY', false); @ini_set('display_errors', 0);
      • WP_DEBUG_LOG: This setting saves debugging messages to a log file (wp-content/debug.log).
      • WP_DEBUG_DISPLAY: This setting controls whether debugging messages are displayed on the screen.
      • @ini_set('display_errors', 0): This line suppresses PHP errors from being displayed.
    5. Save the Changes: After making the necessary changes, save the wp-config.php file.
Viewing 1 replies (of 1 total)
  • The topic ‘is the Critcal Error email stored in database?’ is closed to new replies.