Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
Copa WPB
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

Cómo solucionar el problema de actualización y redirección de la página de acceso de WordPress

Nota editorial: Ganamos una comisión de los enlaces de socios en WPBeginner. Las comisiones no afectan a las opiniones o evaluaciones de nuestros editores. Más información sobre Proceso editorial.

¿Su página de acceso a WordPress sigue actualizándose y redirigiéndose cuando intenta acceder / acceder a su sitio web?

Este problema bloquea el acceso al área de administrador de WordPress, por lo que no se ha podido trabajar en el sitio web.

En este artículo, le mostraremos cómo corregir el problema de actualización y redirección de la página de acceso de WordPress.

Fixing the login page redirect and refresh issue in WordPress

¿Cuál es la causa del problema de actualización y redirección de la página de acceso en WordPress?

El error de actualización y redirección de la página de acceso de WordPress suele deberse a ajustes incorrectos de la URL de WordPress o a que no se han establecido las cookies de acceso.

Normalmente, cuando accedes, WordPress valida tu nombre de usuario y contraseña y luego establece una cookie de acceso en tu navegador / explorador. Después, te redirige al escritorio de WordPress.

Si WordPress no establece la cookie de acceso correctamente o la URL de su área de administración de WordPress es incorrecta, será redirigido de nuevo a la pantalla de acceso en lugar de al escritorio de administrador.

Login page redirect issue in WordPress

Los problemas de acceso / acceso también pueden ser causados por diferentes errores de WordPress, como el error al establecer la conexión con la base de datos, error interno del servidor, o la pantalla blanca de la muerte.

Con esto en mente, vamos a diagnosticar y corregir el problema de redirección y actualización de la página de acceso de WordPress. Puede utilizar estos enlaces rápidos para saltar a un método específico:

Nota: Si desea probar los pasos avanzados de este tutorial de WordPress, cree primero una copia de seguridad de su sitio. Consulte nuestra guía sobre cómo crear manualmente una copia de seguridad de la base de datos de WordPress.

Tutorial en vídeo

Subscribe to WPBeginner

Si no le gusta el vídeo o prefiere la versión escrita, siga leyendo.

Método 1: Vaciar cookies para resolver problemas de acceso / incidencia

WordPress utiliza cookies para la identificación de acceso, por lo que el primer paso para diagnosticar problemas de acceso a WordPress es el más sencillo. Deberá vaciar las cookies y la memoria caché de su navegador / explorador.

En Google Chrome, basta con hacer clic en el menú de ajustes del navegador y seleccionar Más herramientas ” Vaciar datos de navegación.

Clear browsing data in Google Chrome

Se abrirá la página de ajustes de Chrome con un mensaje / ventana emergente “Vaciar datos de navegación” en la pantalla.

Desde aquí, debe seleccionar las opciones “Vaciar cookies y otros datos del sitio” e “Imágenes y archivos almacenados en caché”.

Clear cookies and cache in Google chrome

A continuación, haz clic en el botón “Borrar datos” y Google Chrome vaciará la caché del navegador.

Asegúrese también de que su navegador tiene activadas las cookies. Una vez hecho esto, reinicia el navegador e intenta acceder. Esto debería corregir el problema para la mayoría de la gente.

Tenemos una guía completa con capturas de pantalla que muestran cómo vaciar la caché y las cookies en los principales navegadores.

Método 2: Actualizar los ajustes de URL de WordPress

WordPress viene con ajustes para la URL de su sitio web y la URL de su instalación de WordPress.

Si tiene acceso al área de administrador de WordPress, podrá ver esta opción en la página Ajustes ” General.

WordPress URL settings

Si estas URLs son incorrectas, WordPress le redirigirá de nuevo a la página de acceso.

Dado que no se ha podido acceder al área de administrador de WordPress, deberá editar el archivo wp-config. php para corregir este problema.

El archivo wp-config.php es un archivo especial de WordPress que contiene los ajustes importantes de WordPress. Puede acceder a él mediante un cliente FTP o a través de la aplicación Administrador de archivos en el escritorio de WordPress de su cuenta de alojamiento.

Editing wp-config.php file via FTP

Encontrarás el archivo wp-config.php en la carpeta raíz de tu sitio. Simplemente edite el archivo y pegue las siguientes líneas de código justo antes de la que dice: ‘ ¡Eso es todo, deje de editar! Feliz publicación'.

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

No olvide sustituir “ejemplo.com” por su propio nombre de dominio.

Después, guarda los cambios y vuelve a subir el archivo a tu sitio web.

Ahora puede visitar su sitio web de WordPress e intentar acceder. Esperamos que esto haya corregido el problema. Si no es así, sigue leyendo para diagnosticar otros problemas.

Método 3: Borrar archivo .htaccess en WordPress

A veces, el archivo .htaccess puede corromperse, lo que puede provocar errores internos del servidor o el error de actualización de la página de acceso.

Sólo tienes que acceder a tu sitio web mediante un cliente FTP o a través de la aplicación de gestión de archivos del panel de control de tu proveedor de alojamiento.

Una vez conectado, localice el archivo .htaccess en el directorio raíz de su sitio web y descárguelo a su ordenador como copia de seguridad.

Si no puede encontrar su archivo .htaccess, esta guía sobre por qué puede faltar su archivo .htaccess puede ayudarle.

Delete .htaccess file in WordPress

A continuación, borre el archivo .htaccess de su sitio web.

A continuación, abra el directorio wp-admin, y si hay un archivo .htaccess allí, entonces seguir adelante y borrarlo también.

Ahora puede intentar acceder a su sitio web de WordPress. Si lo consigue, significa que su archivo .htaccess le impedía acceder a WordPress.

Una vez que haya accedido, simplemente vaya a la página Ajustes ” Enlaces permanentes en el panel de administrador de WordPress y haga clic en el botón “Guardar” sin realizar ningún cambio. Esto generará un nuevo archivo .htaccess para tu sitio web.

Método 4: Desactivar todos los plugins de WordPress

A veces, los plugins de WordPress pueden causar este problema, especialmente si hay un conflicto entre dos plugins.

Para desactivar fácilmente todos sus plugins de WordPress, conéctese a su sitio web mediante un cliente FTP o a través de la aplicación Administrador de archivos del panel de control de su cuenta de alojamiento web.

Una vez conectado, vaya al directorio /wp-content/. Dentro de él, verá una carpeta llamada ‘plugins’. Aquí es donde WordPress instala todos tus plugins.

Rename plugins folder to deactivate all plugins

Simplemente renombra la carpeta de plugins a ‘plugins_backup’. Esto desactivará todos los plugins de WordPress instalados en su sitio web.

También tenemos un tutorial detallado sobre cómo desactivar todos los plugins de WordPress cuando el administrador de WordPress es inaccesible.

Una vez que haya desactivado todos los plugins, intente acceder a su sitio de WordPress. Si lo consigues, significa que uno de tus plugins era el causante del problema / conflicto / incidencia.

Método 5: Volver al tema por defecto

Los temas de WordPress también pueden causar conflictos tras la actualización a una versión más reciente de WordPress o del propio tema. Para averiguar si el problema lo está causando tu tema, tendrás que desactivarlo.

El proceso es similar a la desactivación de plugins. Conéctese a su sitio web utilizando un cliente FTP. Luego, debes ir al directorio /wp-content/themes/ y renombrar el directorio de tu tema actual a ‘themes_backup’.

Una vez hecho esto, intente acceder de nuevo. Si lo consigue, significa que el tema era el causante del problema / conflicto / incidencia.

Ahora puedes reinstalar una copia nueva de tu tema para ver si se resuelve el problema / conflicto / incidencia. Si el problema reaparece, tendrás que ponerte en contacto con el soporte de tu tema o cambiar a otro tema de WordPress.

Esperamos que este artículo te haya ayudado a resolver el problema / conflicto / incidencia de actualización y redirección de la página de acceso / acceso de WordPress. Es posible que también desee ver nuestra guía completa para diagnosticar problemas de WordPress o comprobar nuestras mejores selecciones de los mejores plugins de WordPress y herramientas para hacer crecer su sitio.

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.

Descargo: Nuestro contenido está apoyado por los lectores. Esto significa que si hace clic en algunos de nuestros enlaces, podemos ganar una comisión. Vea cómo se financia WPBeginner , por qué es importante, y cómo puede apoyarnos. Aquí está nuestro proceso editorial .

Avatar

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

El último kit de herramientas de WordPress

Obtenga acceso GRATUITO a nuestro kit de herramientas - una colección de productos y recursos relacionados con WordPress que todo profesional debería tener!

Reader Interactions

355 comentariosDeja una respuesta

  1. Syed Balkhi says

    Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

  2. Alisha says

    When i type myurl.com/wp-admin the page shows blank. I can’t see any login panel either nor does my website opens… what is the cause? :(

  3. Jeff says

    If you are having this issue, and nothing suggested here will work – log into the Cpanel and go into PHP My Admin, run a repair on your database table.

  4. Micah says

    Adding the code to the wp-config.php solved this for me.

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

    Thanks for the article! It took me 3 hours sifting through other posts before I found your post and the resolution that I needed!

    Micah

  5. Gordon says

    This problem can also occur if your server hosting WordPress has run out of disk space. Freeing up disk space can solve it.

  6. Friday0 says

    Sir please help me look at what am getting it started this night.

    Fatal error: Call to undefined function
    wp_is_mobile() in /home/u318928021/
    public_html/wp-login.php on line 39

    I don’t know what to do

    • WPBeginner Support says

      Seems like a plugin or your WordPress theme is causing this error. Deactivate all your WordPress plugins and check if this resolves your issue. If it does then you need to reactivate plugins one by one. This will help you find the plugin causing the error. If deactivating all plugins does not resolve the issue, then switch to a default WordPress theme like Twenty Fifteen. If switching theme resolves the issue, then the problem is your with your WordPress theme.

      Administrador

  7. Thomas Le Coz says

    You guys saved my ass. I was stuck outside a client site after messing with a SSL certificate and some stuff on managed account.

    Never encountered this issue before, got saved by your guide.

    Thanks ;)

  8. Eva Duli says

    Nothing of these work for me. I want to work the site localhost but when I am trying to login in the admin it redirects to the old admin login. Do you have any idea?

  9. Marco Panichi says

    My problem was that I hadn’t renew the database and the provider denied my user to insert/update the database.

    The error I received was: “INSERT command denied to user ‘Sqlxxxxxx’@’xx.xxx.xxx.xxx’ for…”

    So the solution in my case was:
    1) activate the debug into wp-config.php > define(‘WP_DEBUG’, true); in order to discover the problem
    2) renew the database

    Hope this help!

  10. JohnnZenith says

    I have a wordpress.com blog and all these instructions either are not relevant or I do not understand them, so I guess i’m going to leave it.

  11. chris says

    I cant find my .htaccess file? I can find it in my rootfirectory but not on my subdomain (where I have a whole new wordpress site). What do I do? It is my first time ever to log in to my subdomain wordpress.

  12. Kenny says

    The dreaded Internal Server Error and web host support quickly identified a corrupted .htaccess. Spent next 3 hours trying to find how to use my ImportBuddy when I didn’t have WP Admin access. Finally thought to check WPBeginner, found the .htaccess issue above and 30 seconds later had fixed the issue. Next time I come here first!

    Thanks guys and gals.

  13. Drew says

    Changing the wp-config.php file did it for me! This is the second time I’ve had this issue in two weeks, so I think the fix via htaccess was only a temporary solution.

  14. joel says

    Seriously a life saver! Corrupted .htaccess files was my issue. But following your steps helped me solve it. Much, much appreciated!

  15. rubenjm says

    I had this issue, tried all these options and none worked for me.
    Finnally solved it… apparently my database was overloaded!! I had to login through phpmyadmin and delete and clean some tables. Hope it helps someone!

  16. Liviu says

    I did all of the proposed solutions, but nothing works for me! It keeps refreshing and redirecting it back to the login screen. Changing the folder of my current theme gives the white screen of death. It doesn’t revert to the default theme. Any other idea, please?

    Being at a dead end, I’m thinking to download all the site through ftp, make a new one site from WordPress and then upload one by one all my content. I’m worry however if I’ll be able to insert all the customization settings afterwards. The current theme was made custom by another person which cannot help anymore. Is it safe to do that? Thanks!

  17. Mary Anne says

    Thank you so much. I have WordPress pages built via my account with bluehost. One of my wordpress sites stopped working. I had the white screen of death.

    I followed each step in order, until I found the step that worked to resolve my problem. The step that worked for me was, Revert Back To Default Theme. Instead of using an ftp though, because I was having a hard time with my fetch working, I logged into my bluehost account and went into my file manager and then accessed my wpcontent/themes/directory that way for changing the title of my current theme.

    this worked perfectly. I was able to log back in and choose a different theme. Thank you again

    Mary

  18. Manish says

    Hello,

    Its not working for me. I had made every change into my site as per this tutorial still no luck. Added these two line in web config file.

    define(‘WP_HOME’,’http://www.siteurl.com’);

    define(‘WP_SITEURL’,’http://www.siteurl.com’);

    deleted .htaccess file. but still same problem. My site running on 1&1 hosting.

    Please help me.

    Thanks
    Manish

    • Umair says

      Dear manish , there is small change use it will definitely work

      1define(‘WP_HOME’,’http://example.com/wp-admin’);
      2define(‘WP_SITEURL’,’http://example.com’);

  19. Beck Abad Lastimosa says

    I have had my site for more than 6 months now and I finally decided to transfer hosting. After the transfer was successfully done, I as still able to access my login page. But these past few days has been a nightmare! I am was able to login to WP under the new DNS but as of this time, this problem suddenly occured:

    – Everytime I login to WP admin, I should see the login page right? But what I get is a download of wp-login.php. I have tried checking issues ith the guide of WP Codex. I tried contacting GoDaddy (my new host) but they told me they do not handle coding, etc. Right now, I’m on a dead end! I have tried different browsers but I still get a download of wp-login.php instead of the login page showing itself.

    I ould really appreciate it if you can help me.

  20. Thilip kumar says

    I Check with all the above but unable to login, I can ablre to see the login window, after I submitting login form. I Displays ‘.’ (Dot symbol)

  21. Isak says

    Did all of the above, nothing works. My main wp-login.php redirects me to one of my subdomains.

    This is how the redirect problem occured:
    1. My web hotel shut down my site, saying that it had been infected with malware.
    2. I changed all my passwords via PhpMyAdmin as well as to the database.
    3. I manually updated WP in my root directory as well as 2 out of 3 subdomains (the 3rd one already had the latest version) by uploading the new files and replacing the old ones, since I was not allowed to access my WP admin area.
    4. I manually added a .htpasswd and .htaccess to my root WP install and tried to access wp-login.php. I tried my 3rd subdomain (the one with the latest install of WP) first and it worked. After that, I tried my main domain and came to a page saying “update database”, so I did. After that I tried again, but every time I try to reach my root install or any of the other subdomains, I get redirected to my 3rd subdomain.

    Any ideas?

    • WPBeginner Support says

      Open the wp-config.php file on the root site. Add these two lines to your wp-config.php file:

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

      Replace example.com with your own domain. Also delete .htaccess file from all your subdomains and root domain. Once you get access to WordPress admin area on your root domain you need to go to Settings -> Permalinks and just save your permalink structure.

      Administrador

  22. Jonny says

    WP_SITEURL did it for me. Seems illogical but it worked, so thanks for the tip! This only started happening recently to me – I wonder if it’s more prevalent with subdirectory installs with newer versions of WP.

  23. Peter Evans says

    Recently WP started getting me to login ever 5 of so minutes. I noticed that my wp-config.php did not have the following lines
    define(‘WP_HOME’,’http://example.com’);
    define(‘WP_SITEURL’,’http://example.com’);

    and when i inserted then the need to login was a less but I was then told that my session has expired and I needed to relogin in.

    This is very frustrating and I would be greatful if you could assist me. I am using WP 3.6.1

    Peter Evans

  24. Aamna says

    and Yes if your wp-config.php file does not provide you a solution.
    Try going to functions.php of your theme via ftp and add same two lines right below the <?php line and upload again. here you go !!!
    it works for me :)

  25. W.J.Kok says

    I use Epic Browser for testing because that browser will not store cookies (by default). Therefore clearing the caches will not delete all my stored passwords in the process.

  26. Brent Norris says

    Had a special case of the redirects all day. This particular post, out of about 20 keyed me in on a solution. Just wanted to say, “thanks!” Your perspective was a refresh after ten hours chasing down a solution.

    It was the part about generating a new .htaccess file that made the difference for me. Wish I could be more helpful to others but the problem I was having wasn’t very related and wouldn’t make a lot of sense to your readers.

    Aloha

  27. Adrian says

    Thanks a lot for the ‘Update Site URL’ fix. That solved an issue I was battling with for a while and saves me from any further headaches.

  28. Paul says

    I normally get this error when working with multisite, normally it’s a cookie path problem which can be fixed by changing the wp-config.php.

  29. Robert Connor says

    I really needed this tutorial it happens to me all the time usually a plug in conflict. I am addicted to plugins. Thanks staff! Have a great day on purpose…

  30. Kartik eye says

    I had the same issue, few days ago. I was trying to enable the wpmultisite function for my new website with sub directories. My website is hosted on bluehost. I did everything step by step. But after editing all the files like wpconfig.php and htaccess. When I finally tried to login, I was getting a redirect to the same wp login page. I disabled the multiste and then everything was fine again. Please can you help with this?

    • lelebon says

      I tried everything — I said every little advice here — to no avail. Until I noticed I was using wp_config.php instead of wp-config.php. That simple! It solved my problem. HURRAY!!
      Anyways, thanks for the tips. Hope I can help someone too.

Deja tu comentario

Gracias por elegir dejar un comentario. Tenga en cuenta que todos los comentarios son moderados de acuerdo con nuestros política de comentarios, y su dirección de correo electrónico NO será publicada. Por favor, NO utilice palabras clave en el campo de nombre. Tengamos una conversación personal y significativa.