Are you currently locked out of WordPress? I can practically feel the anxiety through the screen. It’s understandable. There aren’t many more uncomfortable feelings than not being able to access your own WordPress website

However, let’s take a deep breath, ok? We will get through this. You have a backup of your site, right? Never mind that now. Instead, let’s concentrate on making things better.

In this article we will walk you through different scenarios that can result in you being locked out of WordPress. Not only that, we will also provide you with the necessary steps to get back into the WordPress dashboard. So you can start breathing normally again.

Your Password Doesn’t Work (And Recovery Doesn’t Either)

Sometimes you find yourself in the situation that your password stops working. Maybe you forgot it (which can happen if you operate several sites) or maybe someone hacked your site and changed it.

The situation gets even worse if password recovery doesn’t work either. When that happens, the only chance you have is to reset your password in the WordPress database. Don’t worry, it’s not as hard as it sounds.

Access the Database via phpMyAdmin

To reset your password, you need to access your WordPress database first. This typically happens through phpMyAdmin, which gives you nice interface to do so. Your hosting provider should give you access to it.

Once there, find the wp_users table. Note, the name might be different in case you changed your database prefix during installation, however, it should still end in _users.

wp_users table in wordpress database

Here’s where WordPress saves all users, so when you click on it, you should find a list of all user profiles present on your site.

Change User Password

To change your password click Edit next to your username. In the next screen, find the user_pass field. This is where your user password is saved. However, since it is encrypted, the field will only show gibberish.

encrypted user password inside phpmyadmin

To create a new password, just delete what is in there and write down your new password. However, and this is important, before hitting Save at the bottom, make sure you pick MD5 from the drop-down menu named Function in the middle.

create new wordpress user password inside phpmyadmin

Doing so ensures your password is encrypted again. After that, it’s time to save. If this was the problem, you should now no longer be locked out of WordPress and be able to access wp-admin again.

Locked Out of WordPress Due to Too Many Login Attempts

An excellent way to prevent brute force attacks (where hackers use software to automatically try to guess your username and password) is to limit login attempts. The problem: This can also lock you out by accident.

In fact, that very thing happened to me because I forgot to white list my new IP address with the security plugin I was using. Here’s how to deal with it.

Disable the Lockout in Your Database

If you encounter this problem, you can usually find help with the makers of your security plugin. For example, in my case iThemes Security saves all logged out users in the database under wp_itsec_lockouts and I could just delete the lock on my user name.

That way, I got access to the WordPress backend again, where I could then white list my IP address to avoid problems like this in the future.

If you suspect your security plugin has you locked out of WordPress, google your its name plus “locked out” or a similar search phrase do find a solution. It might be just as easy to remedy as it was for me.

Last Resort: Disable Your Security Plugin

If you can’t find anything for your particular security solution, there’s also a last resort by disabling the plugin completely. For that, establish a connection to your FTP server (for example, via FileZilla) and access your plugins folder inside wp-content.

Once there, you can deactivate your security plugin by renaming its directory. After that, it’s time to try if you are still locked out of WordPress. If you have access again, make sure to take steps to prevent this from happening again as mentioned above.

You Lost Your Admin Privileges

Another thing that might happen when someone hacks your site is that you find yourself without admin privileges. That mean you are able to log into WordPress but have no access to important menus like Plugins and Themes. Of course, that’s also not an ideal situation. However, luckily, the solution is also not too complicated.

Create a New User

In this case, again, the first step is to access database and navigate to wp_users. Once there, click Insert at the top.

create new wordpress admin user in phpmyadmin

This lets you create completely new user. Here’s what you need to fill in to do so:

  • ID — You can input any number here as long as it isn’t in use yet. A good way is to count how many users are currently on your site and set the ID to that number plus one. Whatever number you use, remember it for the steps further below!
  • user_login — This is your WordPress login, pick anything except admin.
  • user_pass — As we have settled before, this is your user password. Input a save password and don’t forget to set MD5 under Function.
  • user_nicename — A nicer version of your user name. Shows up in the WordPress backend and on your website, so pick something you are comfortable with others seeing it.
  • user_email — Enter the email address that you want to associate with that user.
  • user_registered — Pick the current date.
  • user_status — Set or leave to 0 (zero).
  • display_name — The name of the user as displayed on the website.

Once you are done, hit Go at the bottom to save the user.

Configure User Meta

From here, we will now go to the table called wp_usermeta. You should be able to access it from the left hand side. Here, again, click Insert to get to this menu:

create wordpress admin user user meta

Then fill it in like this:

  • unmeta_id — You can leave this blank, it will be generated automatically.
  • user_id — Enter the ID number you configured earlier.
  • meta_key — Here, write wp_capabilities.
  • meta_value — Enter a:1:{s:13:”administrator”;b:1;}.

Again, hit Go to save your input. After that, click Insert again and fill in the settings with the following information:

  • unmeta_id — Leave this blank, again.
  • user_id — Enter the ID number from before.
  • meta_key — This time, input wp_user_level.
  • meta_value — Enter 10.

Save and you should now be able to log back in to WordPress with your new user. When you do, the first thing to do is edit your user profile (upper right corner, pick Edit My Profile) to make sure everything is as it should be. After that, it’s time to deal with the potential hack.

The Dreaded White Screen of Death

Another reason to be locked out of WordPress can also be the White Screen of Death. As the name suggests, this is when you try to access your WordPress website and all you get is a blank white screen. While that’s doubly terrifying, there are ways to deal with it.

Deactivate Your Plugin(s)

One common reason to experience WSoD is a malfunctioning plugin. A quick test to see whether that is the case is to access your FTP server, navigate back to the plugins folder and this time rename the entire folder.

Doing so will completely deactivate all plugins on your site. If your site comes back, it was indeed the fault of one of them.

To troubleshoot, you can now name the plugins folder back to its original name and then reactivate your plugins from WordPress backend one by one until you have found the culprit.

Of course, if you already have an inkling which one might be the plugin at fault, you can also start off by only deactivating that.

Check Your Theme

If the above didn’t solve the problem, your theme might be at fault. To see if that is the case, go to the themes folder. Before you do anything further, download the folder so you have a backup for later.

Then, make sure you have a default theme installed. That means one of the Twenty Something series. If you don’t, just download, unpack and upload one into your themes folder.

After that, rename your active theme’s directory. This will deactivate it and cause WordPress to automatically switch to the default theme. If this fixes the issue, your theme is probably at fault and you need to find the problem.

Increase Your Site’s Memory Limit

Insufficient server memory can also cause the White Screen of Death. There are several things you can do, however, they are beyond this article. Refer to this guide instead to increase the memory limit of your WordPress website. For more solutions for the White Screen of Death, check this article.

Locked Out of WordPress Because of a PHP Parse Error

A tricky thing about websites is that even small things such as a missing semicolon or similar can take them out of commission.

locked out of wordpress due to php parse error

If you find yourself locked out of your WordPress site with a screen similar to above, it’s usually after you inserted a code snippet in one of your files. Especially beginners often use the built-in WordPress editor to do so and then find themselves without means to reverse their actions.

Thankfully, it’s pretty easy to come back from this as long as you remember where you included the snippet (usually functions.php). If you do, you can simply connect to your site via FTP and edit the with a code editor (my favorite is Notepad++). Take out the code snippet you inserted before, re-upload the file and you should be able to access WordPress again.

Did You Make it Back Into Your Site?

Being locked out of WordPress is high on the list of every website owner’s nightmares. Not having access to your site is not a situation anyone likes to be in. Thankfully, there are solution to every problem, including the inability to log into WordPress.

Above, we have covered how to get back into your site if the lockout is caused by faulty password, too many login attempts, lost admin privileges, the White Screen of Death and PHP parse errors. If your problem was included, you should now be safe and sound back in the WordPress backend. Congratulations!

However, if you experienced other problems with being locked out of WordPress that we didn’t include here, please share in the comment section below.

Were you ever locked out of WordPress for a reason not mentioned above? Please let us know the cause and how you solved it in the comments section below!

Article thumbnail image by Jiw Ingka / shutterstock.com

The post Locked Out of WordPress? 4 Solutions When You Can’t Access wp-admin appeared first on Elegant Themes Blog.