View Categories

WordPress Admin Area Inaccessible

1 min read

What “inaccessible” actually means #

The admin area being inaccessible covers several distinct situations. Your IP address was blocked by a security plugin. You’re getting a 403 Forbidden error on wp-admin. You can reach the login page but get redirected back after entering credentials. The admin area loads but key menu items are missing. Each of these has a different cause. Start by noting exactly what you see when you try to access wp-admin.

If you’re getting a 403 Forbidden error #

A 403 means the server received your request but is actively refusing it. The most common causes:

  • Security plugin IP block. Wordfence, WP Cerber, and similar plugins block IP addresses after repeated failed login attempts. If you recently had multiple failed logins (or a brute-force attempt on your login page), your own IP may have been caught in the block. Test by switching to mobile data and trying again from a different IP. If it loads, your home IP was blocked. Whitelist your IP in the security plugin settings, or ask your hosting provider to clear the block.
  • Corrupted .htaccess file. A bad .htaccess rule can produce 403 errors on wp-admin specifically. Rename .htaccess to .htaccess_old via your hosting file manager and try again. If the 403 disappears, regenerate .htaccess by saving permalinks.
  • File permission error. The wp-admin directory should have 755 permissions and files inside should have 644. If these got changed (for example during a migration), reset them via your hosting file manager.

If the login page redirects you back #

This is the login redirect loop. See WordPress Login Issues for the full walkthrough, specifically the URL mismatch and cookie sections.

If you’re completely locked out after a plugin or update change #

When a plugin update or core update created the lockout and you can’t reach wp-admin at all, deactivate plugins via your hosting file manager by renaming the wp-content/plugins folder. WordPress will still load without the plugins folder, letting you get back into the admin area. Once in, rename the folder back to plugins and deactivate the specific plugin causing the problem. The same approach works for theme-related lockouts: rename your active theme’s folder inside wp-content/themes and WordPress falls back to a default theme.

If admin menu items are missing after gaining access #

Some plugins remove or hide admin menu items, either intentionally (white-label plugins for agencies) or as a side effect of a conflict. If specific admin pages are missing after you’ve regained access, deactivate recently installed or updated plugins one at a time and check whether the menu items return. A plugin that registered a custom admin page and then threw a fatal error will often cause that page’s menu entry to disappear.