“I’m sorry to hear you’ve been locked out of your site. If you haven’t received the ‘Technical Difficulties’ email, it usually means your server’s mail function is struggling or the error is occurring before the mailer can trigger.
Since you cannot access the dashboard, you will need to troubleshoot manually via FTP/SFTP or your hosting control panel’s File Manager.
1. Enable WP_DEBUG To see the actual error message instead of a blank screen or generic message, edit your wp-config.php file and change:
define( 'WP_DEBUG', false ); to define( 'WP_DEBUG', true );
This should display the specific file and line number causing the crash on your login page.
2. The ‘Rename’ Trick (Manual Deactivation) If you suspect a plugin is the cause:
- Navigate to
/wp-content/
- Rename the
plugins folder to plugins_old. This effectively deactivates all plugins.
- Try logging in again. If it works, rename the folder back to
plugins and then rename individual plugin folders inside one by one to find the culprit.
3. Check for Theme Conflicts If the plugins aren’t the issue, navigate to /wp-content/themes/ and rename your active theme’s folder. WordPress will then attempt to fall back to a default theme (like Twenty Twenty-Four), which should let you back into the admin area.
Please let us know if you see a specific error message after enabling debug mode!”