WordPress Update Error – Yike

After updating to the newer version of WordPress, I was unable to log in as an admin. This page helped: https://wordpress.org/support/article/debugging-in-wordpress/ to.

Here are my steps to fix  the broken

  1. Turn on debug mode in wp-config.php (in the directory of your WordPress site, would need access to the file on the hosting site)
  2. Go the problematic page
  3. View the error lines and find offending wp plugins
  4. Remove those wp plugins
  5. Ensure no error logs
  6. Turn off debug mode in wp-config.php
<?php
...
// ** MySQL settings ** //
define( 'WP_DEBUG', false );
define( 'WP_DEBUG_LOG', false );
...
?>

 

Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply