1. In wp-config.php, enable debugging:

     
    define('WP_DEBUG', true); define('WP_DEBUG_LOG', true); define('WP_DEBUG_DISPLAY', false);
  2. Check the debug log: wp-content/debug.log

  3. Review cPanel > Metrics > Errors log.

  4. Deactivate plugins via FTP:

    • Rename /wp-content/plugins to plugins-disabled

  5. Revert to default theme via phpMyAdmin:

    • Update template and stylesheet in wp_options

Never debug on a live site without restricting access (via IP or .htaccess).

Was this answer helpful? 0 Users Found This Useful (0 Votes)