Fix WordPress Login Issues¶

WordPress login problems usually look like: - wp-admin redirects back to the login page - “Cookies are blocked” errors - admin access blocked by a security plugin or WAF - 2FA conflicts after a change
Step 1: Quick browser fixes¶
- Use incognito/private mode
- Clear cookies for the domain
- Disable browser extensions
- Try again
Step 2: Confirm HTTPS and correct URL¶
Open:
- https://yourdomain.com/wp-login.php
If you recently enabled SSL, fix redirects and mixed content first.
Step 3: Disable plugins (fastest recovery)¶
- Go to
wp-content/ - Rename
plugins→plugins.off - Try logging in again
If it works, re-enable plugins one-by-one to find the culprit.
Step 4: Disable theme (if needed)¶
- Go to
wp-content/themes/ - Rename the active theme folder
- WordPress will fall back to a default theme if available
Step 5: If 2FA blocks you¶
If you use a 2FA/security plugin and you are locked out: - disabling plugins via file rename usually restores access - after login, re-enable the plugin and reconfigure 2FA carefully
Step 6: Reset a WordPress password via database (emergency)¶
- Open phpMyAdmin and select your WordPress database
- Open the users table (often
wp_users) - Edit
user_passfor your user - Set function to
MD5and enter a new password - Save and log in
After login, change the password again inside WordPress.
Step 7: WAF/CDN blocks (Cloudflare, security layers)¶
If login works on mobile data but not from your office, you may be blocked.
- Check Cloudflare Security Events
- Relax rules for
/wp-login.phpand/wp-admin/ - Whitelist your IP if possible
When to contact GOZEN HOST Support¶
Include: - domain - your public IP - whether disabling plugins restored access - whether you use Cloudflare/security plugins
Summary¶
Fix login issues in this order: cookies → HTTPS URL → disable plugins → disable theme → reset password (if needed) → check WAF/CDN blocks.