WPBeginner

Beginner's Guide for WordPress

  • Blog
    • Beginners Guide
    • News
    • Opinion
    • Showcase
    • Themes
    • Tutorials
    • WordPress Plugins
  • Start Here
    • How to Start a Blog
    • Create a Website
    • Start an Online Store
    • Best Website Builder
    • Email Marketing
    • WordPress Hosting
    • Business Name Ideas
  • Deals
    • Bluehost Coupon
    • SiteGround Coupon
    • WP Engine Coupon
    • HostGator Coupon
    • Domain.com Coupon
    • Constant Contact
    • View All Deals »
  • Glossary
  • Videos
  • Products
X
☰
Beginner's Guide for WordPress / Start your WordPress Blog in minutes
Choosing the Best
WordPress Hosting
How to Easily
Install WordPress
Recommended
WordPress Plugins
View all Guides

WPBeginner» Blog» Tutorials» How to Fix WordPress Login Page Refreshing and Redirecting Issue

How to Fix WordPress Login Page Refreshing and Redirecting Issue

Last updated on March 10th, 2020 by Editorial Staff
395 Shares
Share
Tweet
Share
Pin
Free WordPress Video Tutorials on YouTube by WPBeginner
How to Fix WordPress Login Page Refreshing and Redirecting Issue

We often get messages from our users that their WordPress login page keeps refreshing and redirecting. This locks them out of the WordPress admin area, and they are unable to work on their website.

Login issues can be caused by various different errors such as error establishing database connection, internal server error or white screen of death.

Another type of login error is when your WordPress login page keeps refreshing and redirecting it back to the login screen. In this article, we will show you how to fix the WordPress login page refreshing and redirecting issue.

Fixing the login page redirect and refresh issue in WordPress

If you are going to try the advanced steps mentioned in this WordPress tutorial, then please create a back up of your site. See our guide on how to manually create WordPress database backup.

Video Tutorial

Subscribe to WPBeginner

If you don’t like the video or prefer the written version instead, then please continue reading.

What Causes Login Page Refresh and Redirect Issue in WordPress?

Incorrect WordPress URL settings and failure to set login cookies are the most common reasons causing the login page redirect and refresh issue.

Normally, when you login, WordPress validates your username and password and then sets a login cookie in your browser. After that, it redirects you to the WordPress admin area.

If WordPress fails to set the login cookie correctly, or your WordPress admin area URL is incorrect, then you’ll be redirected back to the login page instead of the admin dashboard.

Login page redirect issue in WordPress

That being said, let’s troubleshoot and fix the WordPress login page redirect and refresh issue.

Clear Cookies to Resolve Login Issues

WordPress uses cookies for login authentication, so the first step in troubleshooting WordPress login issues is the simplest one. Clear your browser cookies and cache.

In Google Chrome, click on the browser settings menu and then select More Tools » Clear Browsing Data.

Clear browsing data in Google Chrome

This will launch the Chrome Settings page with ‘Clear Browsing Data’ popup displayed on the screen.

From here, you need to select ‘Clear cookies and other site data’ and ‘Cached images and files’ options.

Clear cookies and cache in Google chrome

Next, click on the ‘Clear data’ button and Google Chrome will clear the browser cache.

Also, make sure that your browser has cookies enabled. After doing that restart your browser and then try to login. This should fix the issue for most folks.

We have a complete guide with screenshots showing how to clear cache and cookies in all major browsers.

Update WordPress URL Settings

WordPress comes with a settings option that has the URL of your website and the URL of your WordPress installation.

If you had access to your WordPress admin area, then you could see this option under Settings » General page.

WordPress URL settings

If these URLs are incorrect, then WordPress will redirect you back to the login page.

Now, since you are unable to access the WordPress admin area, you’ll need to edit the wp-config.php file to fix this issue.

The wp-config.php file is a special file in WordPress which contains your important WordPress settings. You can access using an FTP client or via File Manager app in your WordPress hosting account dashboard.

Editing wp-config.php file via FTP

You’ll find the wp-config.php file in your site’s root folder. Simply edit the file and paste the following code just before the line that says ‘That’s all, stop editing! Happy publishing’.

define('WP_HOME','https://www.example.com');
define('WP_SITEURL','https://www.example.com');

Don’t forget to replace example.com with your own domain name.

After that save your changes and upload the file back to your website.

You can now visit your website and try to log in and hopefully, this would have fixed the issue for you.

If it didn’t, then continue reading for additional steps.

Delete .htaccess File in WordPress

Sometimes .htaccess file can get corrupted which can result in internal server errors or login page refreshing error.

Simply access your website through an FTP client or via the File Manager app in your hosting account dashboard.

Once connected, locate the .htaccess file in the root folder of your website and download it to your computer as backup.

Delete .htaccess file in WordPress

After that, go ahead and delete the .htaccess file from your website.

Next, open the wp-admin directory and if there is a .htaccess file there, then go ahead and delete it as well.

You can now try to log in to your WordPress website. If you succeed, then this means that your .htaccess file was stopping you from logging into WordPress.

Once you are logged in, simply go to Settings » Permalinks page in WordPress admin area and click on the Save button without making any changes. This will generate a new .htaccess file for your website.

Deactivate All WordPress Plugins

Sometimes WordPress plugins can cause this issue especially if there is a conflict between two plugins.

To deactivate all your WordPress plugins, connect to your website using an FTP client or via the File Manager app in your hosting account dashboard.

Once connected, go to the /wp-content/ directory. Inside it, you’ll see a folder named ‘plugins’. This is where WordPress installs all your plugins.

Rename plugins folder to deactivate all plugins

Simply rename the plugins folder to plugins_backup. This will deactivate all WordPress plugins installed on your website.

We also have a detailed tutorial on how to deactivate all WordPress plugins when unable to access WP-Admin.

Once you have deactivated all plugins, try to logging in to your WordPress site. If you succeed, then this means that one of your plugins was causing the issue.

Revert Back to the Default Theme

WordPress themes can also cause conflicts after upgrading to a newer version of WordPress or the theme itself. To find out whether the problem is being caused by your theme, you need to deactivate your theme.

The process is similar to deactivating the plugins. Connect to your website using an FTP client. Go to /wp-content/themes/ directory and rename your current theme directory to themes_backup.

Once you have done that, then try logging in again. If you succeed, then this means your theme was causing the issue.

You can now reinstall a fresh copy of your theme to see if this resolves the issue. If the issue reappears, then contact your theme’s support or switch to a different WordPress theme.

We hope this article helped you resolve the WordPress login page refreshing and redirecting issues. You may also want to see our WordPress troubleshooting guide with step by step instructions on how to fix WordPress errors on your own.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

395 Shares
Share
Tweet
Share
Pin
Popular on WPBeginner Right Now!
  • Revealed: Why Building an Email List is so Important Today (6 Reasons)

    Revealed: Why Building an Email List is so Important Today (6 Reasons)

  • How to Properly Move Your Blog from WordPress.com to WordPress.org

  • How to Fix the Error Establishing a Database Connection in WordPress

    How to Fix the Error Establishing a Database Connection in WordPress

  • How to Start Your Own Podcast (Step by Step)

    How to Start Your Own Podcast (Step by Step)

About the Editorial Staff

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi. Trusted by over 1.3 million readers worldwide.

The Ultimate WordPress Toolkit

326 Comments

Leave a Reply
  1. Brayton Scott says:
    Mar 4, 2021 at 5:17 pm

    Awesome, and simply tutorial. 1st suggestion fixed my site.

    Reply
    • WPBeginner Support says:
      Mar 5, 2021 at 9:57 am

      Glad our recommendation could help :)

      Reply
  2. Fraser says:
    Jan 10, 2021 at 6:01 am

    I followed the instructions to deactivate all plugins and I now have access to wp-admin again! The instructions were easy to follow, and thanks so much for putting them out there.

    Reply
    • WPBeginner Support says:
      Jan 11, 2021 at 11:52 am

      Glad our article was helpful :)

      Reply
  3. Sachin Baikar says:
    Jan 3, 2021 at 1:12 pm

    Thanks for this great help. The plugin folder renaming worked for me. There was an issue with one of the plugins. Thanks once again :)

    Reply
    • WPBeginner Support says:
      Jan 4, 2021 at 11:17 am

      Glad our recommendations were able to help :)

      Reply
  4. E says:
    Dec 12, 2020 at 7:04 pm

    Thank you for this article. It is a complete lifesaver.

    Reply
    • WPBeginner Support says:
      Dec 14, 2020 at 11:27 am

      Glad our guide was helpful :)

      Reply
  5. Philipp says:
    Oct 19, 2020 at 11:20 am

    I was looking for a solution for over 5 hours now – nothing worked. But deleting the htaccess file in the wp-admin directory helped!
    I cant thank you enough.
    Made my day.

    Reply
    • WPBeginner Support says:
      Oct 20, 2020 at 9:41 am

      Glad our recommendation helped :)

      Reply
  6. María González says:
    Sep 18, 2020 at 6:14 pm

    Thank you! You just saved my life (at least my job!) and a loooot of time (:

    Reply
    • WPBeginner Support says:
      Sep 21, 2020 at 10:34 am

      Glad our guide was able to help :)

      Reply
  7. Suraj Handa says:
    Sep 15, 2020 at 4:54 am

    Hey but now its showing that cookies are disable in your browser please enable cookies. What can I do now?

    Reply
    • WPBeginner Support says:
      Sep 16, 2020 at 1:07 pm

      There are a few possible reasons for a starting point, you may want to clear your cookies and cache to be safe. For a starting point, you may want to take a look at our article below:

      https://www.wpbeginner.com/beginners-guide/how-to-clear-your-cache-in-wordpress

      Reply
    • charlie says:
      Nov 13, 2020 at 9:17 am

      just refresh the page, the wordpress app reacts like that because it suddenly sees no more cookies

      Reply
  8. ajay mali says:
    Aug 25, 2020 at 9:38 am

    you are always post great content that really helps a lot to everyone. thank you so much.

    Reply
    • WPBeginner Support says:
      Aug 25, 2020 at 11:31 am

      You’re welcome :)

      Reply
  9. David Cuff says:
    Jul 29, 2020 at 2:48 pm

    Very helpful. Thank you!

    Reply
    • WPBeginner Support says:
      Jul 30, 2020 at 9:05 am

      You’re welcome :)

      Reply
  10. ibrahim zouadi says:
    Jul 15, 2020 at 10:59 am

    Thank you for sharing those tips, unfortunately none of them have worked for me. I even uninstalled the whole wordpress plugin. I don’t know what should i do next :(

    Reply
    • WPBeginner Support says:
      Jul 16, 2020 at 8:50 am

      For the next step, you would want to take at our article below:
      https://www.wpbeginner.com/beginners-guide/beginners-guide-to-troubleshooting-wordpress-errors-step-by-step/

      Reply
  11. Anthony says:
    Jul 15, 2020 at 7:57 am

    This helped like charm :)

    Many thanks.

    Reply
    • WPBeginner Support says:
      Jul 15, 2020 at 10:58 am

      You’re welcome :)

      Reply
  12. PDN Social says:
    Jul 8, 2020 at 9:37 pm

    This was a lifesaver! We were able to follow step-by-step and avoid a major problem!

    Great information!

    Reply
    • WPBeginner Support says:
      Jul 9, 2020 at 8:55 am

      Glad our guide was helpful :)

      Reply
  13. Jasmeet Singh says:
    Jun 30, 2020 at 6:53 am

    I couldn’t find my wp admin page. It shows

    “There has been a critical error on your website. Please check your site admin email inbox for instructions.

    Learn more about debugging in WordPress.”

    How can I fix this error?

    Reply
    • WPBeginner Support says:
      Jun 30, 2020 at 12:49 pm

      For that specific error, you would want to follow our guide below:

      https://www.wpbeginner.com/wp-tutorials/how-to-fix-the-wordpress-white-screen-of-death

      Reply
  14. cristi says:
    Jun 23, 2020 at 10:16 am

    Hi, i have change by mistake my url and now the domain wp admin login url bring me to other site and i cont have ftp access how i can change back them?

    Reply
    • WPBeginner Support says:
      Jun 24, 2020 at 8:34 am

      You can either reach out to your hosting provider or if you have phpMyAdmin access you could change the options table and update the URL and address.

      Reply
  15. Ankit says:
    Jun 9, 2020 at 9:12 am

    define(‘WP_HOME’,’https://www.example.com’);
    define(‘WP_SITEURL’,’https://www.example.com’);

    where do these two lines add in wp-config.php file?

    At Last OR At Start?

    Please clarify

    Reply
    • WPBeginner Support says:
      Jun 9, 2020 at 9:29 am

      As we state in the article: paste the code just before the line that says ‘That’s all, stop editing! Happy publishing’.

      Reply
  16. Paek says:
    Jun 7, 2020 at 12:57 am

    Thank you so much!!!

    Adding the wp-config lines solved it.

    Thanks!

    Reply
    • WPBeginner Support says:
      Jun 9, 2020 at 8:33 am

      You’re welcome :)

      Reply
  17. Ada says:
    May 29, 2020 at 7:13 am

    Thank you so much for your post. I’m a newbie with WP. These lines worked for me

    define(‘WP_HOME’,’http://example.com’);
    define(‘WP_SITEURL’,’http://example.com’);

    I also changed the below line from false to true.

    define( ‘WP_DEBUG’, true );

    Reply
    • WPBeginner Support says:
      May 29, 2020 at 9:11 am

      Glad our recommendation could help, the WP_Debug you should be able to return to false should you want :)

      Reply
  18. mojo says:
    May 3, 2020 at 6:08 pm

    thank u so much after spending so much time after deleting that .htacces and restart my mac open the website finally thanks for ur time

    Reply
    • WPBeginner Support says:
      May 5, 2020 at 10:22 am

      You’re welcome, glad our recommendations could help :)

      Reply
  19. Goxi says:
    May 1, 2020 at 11:25 am

    You safe my life man! Just messed around the login wp admin site if it wasn’t for this tutorial I would never have solved the problem!

    Reply
    • WPBeginner Support says:
      May 4, 2020 at 11:33 am

      Glad our guide was helpful :)

      Reply
  20. Tomer says:
    Apr 27, 2020 at 3:32 am

    Thank you very much for this tutorial!
    I have tried these methods and managed to temporarily fix the problem.

    The thing is, that after everything seems to be working again, the next day it happens again. Without me changing anything at all. Any tips on that?

    Reply
    • WPBeginner Support says:
      Apr 28, 2020 at 1:02 pm

      You would want to reach out to your hosting provider to ensure there is nothing on their end that could be causing this conflict

      Reply
  21. Sulivan says:
    Apr 22, 2020 at 10:29 pm

    For those who ended up here an after all steps could’t solve this, check if you changed table prefix. I have changed mines and just figured out that there are some usermeta that stores the old prefix.

    Reply
    • WPBeginner Support says:
      Apr 23, 2020 at 9:57 am

      Thanks for sharing what was the issue on your site :)

      Reply
  22. shahin says:
    Apr 18, 2020 at 3:46 am

    thank you bro , amazing content and very useful

    Reply
    • WPBeginner Support says:
      Apr 21, 2020 at 12:58 pm

      Glad you like our content :)

      Reply
  23. Julie says:
    Mar 20, 2020 at 4:43 am

    Tks a lot ! You save me !

    Reply
    • WPBeginner Support says:
      Mar 20, 2020 at 8:57 am

      You’re welcome, glad our guide could help :)

      Reply
  24. Ann says:
    Feb 7, 2020 at 10:41 am

    Thanks a lot to all of you, and specially to Hand: Changing back php version to 7.3 solved this for me! :-D

    Reply
    • WPBeginner Support says:
      Feb 10, 2020 at 8:55 am

      Glad the recommendations could help you :)

      Reply
  25. Hand says:
    Feb 5, 2020 at 8:12 am

    I had this issue and spent an entire day trying every possible solution mentioned here and elsewhere without any progress. Then I remembered that I had changed the PHP version from 7.3 to 7.4 on my hosting’s control panel (DirectAdmin). Changing back php version to 7.3 solved this for me.

    Reply
    • WPBeginner Support says:
      Feb 5, 2020 at 8:27 am

      Thanks for sharing the solution that worked for you :)

      Reply
    • Jeff says:
      Feb 28, 2020 at 4:10 am

      This worked for me. :)

      Reply
    • Joe says:
      May 4, 2020 at 8:50 am

      I’ve just worked out that PHP 7.4 missed three of the extensions we had installed on PHP 7.3:

      php74-php-opcache
      php74-php-process
      php74-php-soap

      As soon as they were enabled and provisioned the wp-admin 404 error disappeared. Hope that helps you to upgrade to 7.4 trouble-free!

      Reply
  26. Shiv says:
    Feb 2, 2020 at 6:09 am

    Hi

    I followed this article and in my case i found one plugin was causing this issue.So it found it by renaming each plugin and keep trying the login and once i reached this plugin and renamed it …admin login worked.So…i renamed back rest of the plugins to their original names and keep this once renamed and admin worked and later i sorted my plugin

    Thanks

    Reply
    • WPBeginner Support says:
      Feb 3, 2020 at 8:54 am

      Glad you were able to get your site working and thanks for sharing the method you used for other users with this issue :)

      Reply
  27. mark says:
    Jan 8, 2020 at 8:30 am

    I deleted the htaccess file as instructed, and now I can’t get a login screen at all. No access to my site (404)

    Reply
    • WPBeginner Support says:
      Jan 9, 2020 at 10:10 am

      To check for the possible issues, you would want to go through the steps in our article here: https://www.wpbeginner.com/beginners-guide/beginners-guide-to-troubleshooting-wordpress-errors-step-by-step/

      Reply
  28. Di says:
    Jan 2, 2020 at 2:08 pm

    Thanks, you’re a life saver. The .htaccess hack worked!

    Reply
    • WPBeginner Support says:
      Jan 3, 2020 at 10:09 am

      Glad our recommendation could be helpful :)

      Reply
  29. gho says:
    Nov 5, 2019 at 12:38 am

    I owe you one! I used the codes and it’s simply worked. Big thanks wpbeginner!

    Reply
    • WPBeginner Support says:
      Nov 5, 2019 at 10:35 am

      Glad our guide could help :)

      Reply
  30. Giang Nguyen says:
    Oct 31, 2019 at 12:34 am

    thanks man. Your Update Site URL works!
    I tried to manually install piece by piece in my local macbook, to learn how wordpress work, and missing your piece!

    The install manual doesn’t really have this kind of info =)

    giang

    Reply
    • WPBeginner Support says:
      Oct 31, 2019 at 10:11 am

      Glad our recommendation could help you :)

      Reply
  31. Todd says:
    Oct 10, 2019 at 8:05 pm

    I’ve had this issue before many years ago and I think my fix was the same this time as it was then. After trying many many suggestions above, what finally did it for me was clearing my chrome browsing history. Someone mentioned trying that and not working, but this was not actually offered as a solution so I thought I would post it. Thanks!

    Reply
    • WPBeginner Support says:
      Oct 11, 2019 at 10:46 am

      Thanks for sharing what worked for you :)

      Reply
  32. Peter says:
    Aug 11, 2019 at 6:05 am

    I was having a login error where my login page keeps refreshing and redirecting me back to the login screen. And for me (I tried all of the above solutions) and none of them worked.

    Then I checked the error_log file on my WordPress site and saw that the problem I was having said “WordPress database error Disk full”

    As a result, I went into my wp-config.php file and added the following code to file right above the text line where it says in the file “* That’s all, stop editing! Happy blogging. */”.

    The code I added is:

    define(‘WP_MEMORY_LIMIT’, ‘256M’);

    Problem solved.

    Reply
    • WPBeginner Support says:
      Aug 12, 2019 at 9:42 am

      Thanks for sharing the solution that worked for you :)

      Reply
    • Chris says:
      Nov 18, 2019 at 2:52 pm

      Thanks for this – it worked perfectly and tehe memory limit solved the problem. I was really angry because all other stuff like plugins, themes, .htaccess didn’t work!!!
      Greetigs Chris

      Reply
  33. purushotham says:
    Aug 11, 2019 at 12:24 am

    i am not able to login my wordpress admin ,getting 404 error.what should i do to reslove the issue.

    Reply
    • WPBeginner Support says:
      Aug 12, 2019 at 10:32 am

      For a starting point, you would want to reset your permalinks using: https://www.wpbeginner.com/wp-tutorials/how-to-fix-wordpress-posts-returning-404-error/
      If that does not solve the error then you could try the troubleshooting steps in our guide here:
      https://www.wpbeginner.com/beginners-guide/beginners-guide-to-troubleshooting-wordpress-errors-step-by-step/

      Reply
  34. Travis says:
    May 27, 2019 at 8:50 am

    None of these options worked for me… Turns out to be a hosting issue. Called Network Solutions and they said that because my database was over 300mb I needed to upgrade my database because after 300mb they lock you out…. Upgrading by DB fixed the issue. Who knew….?!

    Reply
    • WPBeginner Support says:
      May 28, 2019 at 2:45 pm

      Glad you were able to find the solution to the problem :)

      Reply
    • Chris says:
      Jul 2, 2019 at 1:57 am

      How did you upgrade the WP database? I think this may be my problem.

      Reply
      • WPBeginner Support says:
        Jul 2, 2019 at 11:58 am

        You would reach out to your hosting provider and they would let you know if you need more space for your database similar to Travis

        Reply
  35. hamdi says:
    May 3, 2019 at 10:07 am

    Defining these lines ON TOP OF wp-config.php helped. They don’t help if you put them at the bottom.

    define(‘WP_HOME’,’http://example.com’);
    define(‘WP_SITEURL’,’http://example.com’);

    Reply
    • WPBeginner Support says:
      May 3, 2019 at 11:03 am

      It should still work if you place it at the bottom of the wp-config file, there may have been a problem with where you placed it depending on what’s in your specific wp-config file.

      Reply
  36. Joe G says:
    May 1, 2019 at 4:37 pm

    Nothing worked for me until I went into ftp server and edited index.php in the site’s root (alongside all of the other wp-related files mentioned here), and set define( ‘WP_USE_THEMES’, FALSE )

    This will temporarily break your site temporarily (no error codes, just white screen), though my site loading wasn’t the problem. This allowed me to finally access my dashboard through the login site, where I then put a brand new theme on and fixed what I thought might be the culprit (I made the mistake of redirecting my “Home” link on my menu to an exterior site).

    After removing the “Home” link, (or just to be safe, the menu in general), and creating a new menu with only the pages in question I wanted to use, I re-set the ‘wp_use_themes’ to TRUE and we’re back off to the races again!

    Reply
    • WPBeginner Support says:
      May 2, 2019 at 10:42 am

      Thanks for sharing what worked for you

      Reply
  37. Mohsen says:
    Apr 30, 2019 at 11:41 pm

    I’ ve tested all of these solutions, but my problem has not solved.

    Reply
    • WPBeginner Support says:
      May 1, 2019 at 11:40 am

      If none of these methods worked then you may want to reach out to your hosting provider to ensure there aren’t any issues on their end.

      Reply
  38. Matt Nigro says:
    Mar 27, 2019 at 11:17 am

    My issue is that everyone has access to my site…no login required! Can someone help.

    Reply
    • WPBeginner Support says:
      Mar 27, 2019 at 11:59 am

      Do you mean people can view your site or people can log in to your site? If you mean the login then if you’ve logged in once, WordPress should log you back in but your site’s visitors would still need to log in. If you visit your site in an incognito browser you should see what your visitors see.

      Reply
  39. Pranay Singh says:
    Mar 20, 2019 at 4:44 am

    I am unable to login to the wordpress admin page as it is showing too many redirects(error) as I had just installed the wordpress and since then I am unable to login the page I have made every change and have checked each possible way through which I can make changes. I have done everything but nothing works. Please help me with the issue.

    Reply
    • WPBeginner Support says:
      Mar 20, 2019 at 10:46 am

      For the too many redirects error, you would want to take a look at a different article of ours located here: https://www.wpbeginner.com/wp-tutorials/how-to-fix-error-too-many-redirects-issue-in-wordpress/

      Reply
  40. Peter Guckian says:
    Feb 18, 2019 at 8:20 am

    For some reason, everytime I go to login into my work’s cms site it redirects me to the actual website rather than the dashboard, have deleted browsing history, cookies, cache etc but no luck. Nobody else in the office seems to have faced this difficulty before

    Reply
    • WPBeginner Support says:
      Feb 18, 2019 at 3:00 pm

      If you’re using the /wp-admin url to log into the site you may want to try instead using /wp-login.php to see if your browser is not fully clearing the cache.

      Reply
  41. Hugo says:
    Feb 14, 2019 at 8:09 am

    For me the solution was deleting user.ini file in the root of my site
    This file was created by host

    Reply
    • WPBeginner Support says:
      Feb 14, 2019 at 11:49 am

      Thanks for sharing this method, hopefully it helps anyone else if the above methods don’t work :)

      Reply
  42. Stephen Vincent Abarca says:
    Feb 4, 2019 at 4:57 am

    I have a problem in my login. When I visit my site with /wp-admin it then put itself to /wp-login.php with a popup login indicating “your connection to this site is not private”. I cannot login even I put my user and pass.

    Reply
    • WPBeginner Support says:
      Feb 4, 2019 at 4:20 pm

      WordPress should normally redirect you to that page if you have not logged in. From the error, you may need to ensure your SSL and https are set up correctly: https://www.wpbeginner.com/wp-tutorials/how-to-add-ssl-and-https-in-wordpress/

      Reply
  43. mahyar says:
    Jan 26, 2019 at 5:00 am

    thank you for your guide
    i delete htaccess and every thing fixed
    i made another one from setting and save
    then i compare both backup file and new one
    the backup one has some extra entries
    is it ok? or i wil face problem?

    Reply
    • WPBeginner Support says:
      Jan 28, 2019 at 1:42 pm

      It would depend on what is in the file, you would normally lose any added settings such as: https://www.wpbeginner.com/wp-tutorials/9-most-useful-htaccess-tricks-for-wordpress/

      Reply
  44. Stefano says:
    Jan 18, 2019 at 12:15 pm

    My issue is little different. When I click on customize theme, i get white page.
    Also tried to install the default theme, but nothing changes. I noticed one thing in the url, this code %3A%2F%2F instead of // and that should be part of the problem i think…
    I wanted to ask if someone had the same misadventure and how he solved it. Thanks P.S. This problem occurred to me a few months ago, but I had not given too much weight, thinking it would be resolved with a new upgrade, but unfortunately it was not …

    Reply
    • WPBeginner Support says:
      Jan 22, 2019 at 3:06 pm

      The %s are it encoding the symbols in the url, that would likely not be your issue. You may want to try increasing your memory limit: https://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/
      To see if you are running out of memory as it is loading or check with your host to see if this could be an error that they can see.

      Reply
  45. Reza Taba says:
    Dec 16, 2018 at 8:55 pm

    Divi Builder plugin was the culprit. Disabling it resolved the issue. Then I uninstalled and reinstalled it.
    FIXED.

    Thanks for the help!

    Reply
  46. Marnus says:
    Dec 6, 2018 at 4:15 am

    None of the mentioned methods worked for me.

    Resetting my password worked for me though.

    And no, I did not try to log in with the wrong password.
    I tested using a wrong password and the site would respond accordingly by saying it is wrong, but when using the correct password, it would just be in the login loop.

    Reply
  47. Michael Morad-McCoy says:
    Dec 2, 2018 at 11:56 am

    NONE of the above worked! Very, very frustrated as I need to migrate my site to a new host and doing so manually hasn’t worked so I wanted to try a plug-in. But I cannot access Network Admin to add the plugins!! Arrgh!

    Reply
  48. saurab says:
    Dec 1, 2018 at 10:19 pm

    Hi
    I tried all these steps but still i am not able to login.

    Reply
  49. Chinmay Ray says:
    Dec 1, 2018 at 7:48 am

    Hi, Thank You for this blog it cleared alot of my doubts. I have one query

    i have access to wordpress however, when i login with email and password, i come back to the website instead of wordpress dashboard of that website. Yes am not admin. i have been given access by my client.

    please help me with this.

    Reply
    • WPBeginner Support says:
      Dec 3, 2018 at 10:28 pm

      Hi Chinmay,

      The client may have a plugin to redirect users to the homepage upon login. You may need to ask them to find and disable that plugin.

      Reply
  50. ken says:
    Nov 1, 2018 at 12:59 pm

    once again. this site save my site.

    Reply
« 1 … 3 4 5

Leave a Reply Cancel reply

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.

Over 1,320,000+ Readers

Get fresh content from WPBeginner

Featured WordPress Plugin
WP Mail SMTP logo
WP Mail SMTP
Fix WordPress email delivery issues. #1 SMTP plugin. Learn More »
How to Start a Blog How to Start a Blog
I need help with ...
Starting a
Blog
WordPress
Performance
WordPress
Security
WordPress
SEO
WordPress
Errors
Building an
Online Store
Useful WordPress Guides
    • 7 Best WordPress Backup Plugins Compared (Pros and Cons)
    • How to Fix the Error Establishing a Database Connection in WordPress
    • Why You Need a CDN for your WordPress Blog? [Infographic]
    • 30 Legit Ways to Make Money Online Blogging with WordPress
    • Self Hosted WordPress.org vs. Free WordPress.com [Infograph]
    • Free Recording: WordPress Workshop for Beginners
    • 24 Must Have WordPress Plugins for Business Websites
    • How to Properly Move Your Blog from WordPress.com to WordPress.org
    • 5 Best Contact Form Plugins for WordPress Compared
    • Which is the Best WordPress Popup Plugin? (Comparison)
    • Best WooCommerce Hosting in 2021 (Comparison)
    • How to Fix the Internal Server Error in WordPress
    • How to Install WordPress - Complete WordPress Installation Tutorial
    • Why You Should Start Building an Email List Right Away
    • How to Properly Move WordPress to a New Domain Without Losing SEO
    • How to Choose the Best WordPress Hosting for Your Website
    • How to Choose the Best Blogging Platform (Comparison)
    • WordPress Tutorials - 200+ Step by Step WordPress Tutorials
    • 5 Best WordPress Ecommerce Plugins Compared
    • 5 Best WordPress Membership Plugins (Compared)
    • 7 Best Email Marketing Services for Small Business (2021)
    • How to Choose the Best Domain Registrar (Compared)
    • The Truth About Shared WordPress Web Hosting
    • When Do You Really Need Managed WordPress Hosting?
    • 5 Best Drag and Drop WordPress Page Builders Compared
    • How to Switch from Blogger to WordPress without Losing Google Rankings
    • How to Properly Switch From Wix to WordPress (Step by Step)
    • How to Properly Move from Weebly to WordPress (Step by Step)
    • Do You Really Need a VPS? Best WordPress VPS Hosting Compared
    • How to Properly Move from Squarespace to WordPress
    • How to Register a Domain Name (+ tip to get it for FREE)
    • HostGator Review - An Honest Look at Speed & Uptime (2021)
    • SiteGround Reviews from 4464 Users & Our Experts (2021)
    • Bluehost Review from Real Users + Performance Stats (2021)
    • How Much Does It Really Cost to Build a WordPress Website?
    • How to Create an Email Newsletter the RIGHT WAY (Step by Step)
    • Free Business Name Generator (A.I Powered)
    • How to Create a Free Business Email Address in 5 Minutes (Step by Step)
    • How to Install Google Analytics in WordPress for Beginners
    • How to Move WordPress to a New Host or Server With No Downtime
    • Why is WordPress Free? What are the Costs? What is the Catch?
    • How to Make a Website in 2021 – Step by Step Guide
Deals & Coupons (view all)
OIO Publisher
OIO Publisher Coupon
Get $10 off on OIO Publisher, a robust ad management plugin for WordPress.
IPVanish Coupon
Get 20% OFF on IPVanish, one of the best VPN service providers for bloggers and WordPress users.
Featured In
About WPBeginner®

WPBeginner is a free WordPress resource site for Beginners. WPBeginner was founded in July 2009 by Syed Balkhi. The main goal of this site is to provide quality tips, tricks, hacks, and other WordPress resources that allows WordPress beginners to improve their site(s).

Join our team: We are Hiring!

Site Links
  • About Us
  • Contact Us
  • FTC Disclosure
  • Privacy Policy
  • Terms of Service
  • Free Blog Setup
  • Free Business Tools
  • Growth Fund
Our Sites
  • OptinMonster
  • MonsterInsights
  • WPForms
  • SeedProd
  • Nameboy
  • RafflePress
  • Smash Balloon
  • AIOSEO

Copyright © 2009 - 2021 WPBeginner LLC. All Rights Reserved. WPBeginner® is a registered trademark.

Managed by Awesome Motive | WordPress hosting by SiteGround | WordPress Security by Sucuri.