Redirigiendo al dominio antiguo después de la migración
-
-
He agregadoestas líneasen wp-config.php yfuncionó. `define ('WP_SITEURL','https://domain.com'); define ('WP_HOME','https://domain.com'); `I have added these lines in wp-config.php and it worked. `define('WP_SITEURL', 'https://domain.com'); define('WP_HOME', 'https://domain.com');`
- 2
- 2018-06-12
- Vignesh Chinnaiyan
-
Consulteesteenlace quepuede resultarle útil.https://www.phparticles.com/wordpress/replace-old-to-new-url-in-the-wordpress-database/Check this link which might be helpful to you. https://www.phparticles.com/wordpress/replace-old-to-new-url-in-the-wordpress-database/
- 0
- 2020-07-20
- Mr.Happy
-
6 respuestas
- votos
-
- 2015-05-07
Miproblemaestá resuelto,estoypublicandoesto como una respuestapara que alguienmáspuedabeneficiarse.
Miproblemafue que
siteurl
yhomeurl
no se actualizaron,así que coloquédefine('RELOCATE',true);
en miArchivowp-config.php
.Y denuevotrató de acceder al sitio web,se dirigió a la URL correctaperotodoelcss
se habíaido. Luegome dirigí awp-admin
ytampoco venía sincss
pero aúnintentéiniciar sesión,peroesta vezme llevó a la URL ywith css
perono heiniciado sesión. Luego,denuevo heintentadoiniciar sesión yesta vez lo heiniciado correctamente. Luego cambié lasurls
desettings
en elpanel de administración.Después deesto,debeeliminartodos los archivos de caché de sunavegadorparaeliminar cualquiertipo de redirecciónpersistente.
Espero queesto ayude a otrapersona a lidiar conelmismoproblema.
My issue is resolved, I am posting this as an answer so that someone else can benefit out of it.
My issue was,
siteurl
andhomeurl
were not updated, so I have placeddefine('RELOCATE',true);
in mywp-config.php
file. And again tried to access the website , it gone to the correct url but all thecss
was gone. Then I headed over towp-admin
and it also came with nocss
but still I tried to login but this time it has taken me to the correct url andwith css
login page but didn't logged in. Then Again I have attempted to login and this time I have logged in successfully. Then I have changed both theurls
fromsettings
in the admin panel.After this you must to delete all your browser cache files to delete anny kind of persistant redirection.
Hope this helps someone else dealing with the same problem.
-
¡Esome sirvió!That did the trick for me!
- 0
- 2018-11-29
- Avishai
-
¡Hola!Mepregunto dónde ha agregadoestoen su archivo de configuración,porque loestoyintentandoen varios lugares conpoco éxito.Hi! I'm wondering whereabouts in your config file you added this, because I'm trying at several places with little success.
- 0
- 2018-12-10
- QuestionerNo27
-
- 2015-08-29
Tuveelmismoproblema (funcionabien ahora),estoes lo que hice
en lugar deintentar acceder alpanel de administración con yoursite.com/wp-admin,probé con yoursite.com/wp-login.php yme llevó alpanel de administración demi nuevo sitio.Luego cambiéel dominio del sitioen la configuracióngeneral y ahorafuncionabien.
I had the same problem (works fine now), here is what i done
instead of try to access to the admin panel whit yoursite.com/wp-admin i tried with yoursite.com/wp-login.php and it took me to the admin panel of my new site. Then I changed the site domain in general settings and now it works just fine.
-
Gracias,pudeeditar la configuración y ahora laspáginasinternasfuncionanbien,pero lapágina deinicionofunciona.He actualizado losenlacespermanentesen la URL de lapágina deinicio.Thanks, I was able to edit the settings and now the internal pages are working just fine but the home page is not working. I have updated the permalinks n the url for the home page
- 0
- 2019-01-03
- viCky
-
- 2018-04-23
Ejecute lo siguiente cuando cambie de dominio:
UPDATE wp_options SET option_value = 'https://yournew.domain' WHERE option_name = 'siteurl'; UPDATE wp_options SET option_value = 'https://yournew.domain' WHERE option_name = 'home';
Run the following when you are changing domain:
UPDATE wp_options SET option_value = 'https://yournew.domain' WHERE option_name = 'siteurl'; UPDATE wp_options SET option_value = 'https://yournew.domain' WHERE option_name = 'home';
-
Pero claramentenoes suficiente.El dominio antiguo aún se almacenaráen publicaciones,barras laterales,otras opciones,etc.But it's clearly not enough. The old domain will be still stored in posts, sidebars, other options and so on...
- 0
- 2018-05-25
- Krzysiek Dróżdż
-
- 2017-02-26
Cambiarel campo wp_options ayudará unpoco,pero a veces suspáginas,publicaciones y complementos usarán referencias absolutas aimágenes y otros archivos.Eneste caso,deberá actualizartoda labase de datos.Dado quenoesfácil "reemplazartodo"en phpMyAdmin (amenos que construya unainstrucción UPDATEen SQL),esmejor:
- Realice una copia de seguridad detoda subase de datos como un archivo sql.(Incluiría la opción DROP TABLE)
- Exportetoda subase de datos como un archivo sql (texto) y ábraloen uneditor detexto.(Yo uso Bloc denotas ++ )
- Haga un Reemplazartodo detodas lasinstancias de su antiguo dominio con sunuevo dominio.(es decir,olddomain.com connewdomain.com)
- Guardeel SQL actualizado y vuelva aimportarlo aphpMyAdmin.
¡Voila!
Changing wp_options field will help a little, but sometimes your pages, posts and plugins will use absolute references to images and other files. In this case, you'll need to update the entire database. Since there's no easy "replace all" in phpMyAdmin (unless you construct an UPDATE statement in SQL), it's best to:
- Backup your entire database as an sql file. (I would include the DROP TABLE option)
- Export your entire database as a sql (text) file and open it in a text editor. (I use Notepad++)
- Do a Replace All of all instances of your old domain with your new domain. (i.e. olddomain.com with newdomain.com)
- Save the updated SQL and import it back into phpMyAdmin.
Voila!
-
Siestono resuelve completamenteelproblema: 1. Verifique si hay referencias de su antiguo dominioen wp-config.php 2. Cambietemporalmenteelnombre de su archivo .htaccess 3. Muevatemporalmente las carpetas de complementos de seguridad o reescritura deenlacespermanentesIf this doesn't fully resolve the problem: 1. Check for any references of your old domain in wp-config.php 2. Temporarily rename your .htaccess file 3. Temporarily move any security or permalink rewrite plugin folders
- 0
- 2017-02-26
- Tone Williams
-
Creo queestaes la soluciónmás completa.Mepreguntopor qué soy laprimerapersona que vota afavorI think this is the most comprehensive solution. Wonder why I'm the first person upvoting
- 0
- 2018-07-25
- che-azeh
-
Estaes lamejor solución ... SIDENOTE: Si usa cloudflare,borre su cachéen su consola cloudflare.This is the best solution... SIDENOTE: If you use cloudflare, clear your cache in your cloudflare console!
- 0
- 2020-05-18
- Evan Parsons
-
- 2016-09-20
Cambie la URLen el archivo debase de datos de opcionesen phpmyadmin.Significa suenlace URL real.Luego abra lapágina wp-admin .. conelenlace wp-login.php .. Escriba su autenticación y luegoen la configuracióngeneral cambieel directorio URLnuevamente y acceda al sitio web.
Change the URL in option database file in phpmyadmin. Means your actual URL link. Then open wp-admin page..with wp-login.php link.. Type your authentication then in general setting change the URL directory again and access the website.
-
- 2016-10-03
Para ampliar la respuesta de Reezppo,
Abra PHPMyadminen su cPanel y luego haga clicen el archivo wp_options y luego verá unmontón de campos quepuede cambiar y verá la URL anterior que luegopuede cambiarmanualmente a lanueva URL (en dos lugares).Luegoguárdelo y vuelva a yoursite.com/wp-login.php y deberíapermitirleiniciar sesión sin redireccionar.Recuerde queiniciará sesión conelnombre de usuario y la contraseña antiguos de Wordpress (el del sitio original que semudó).
To just expand on Reezppo's answer,
Open PHPMyadmin in your cPanel and then click on the wp_options file and then you will see a bunch of fields that you can change and you will see the old url which you can then change manually to the new url (in two places). Then save it and go back to yoursite.com/wp-login.php and it should let you login without redirecting. Remember you will be logging in with the old Wordpress username and password (the one from the original site that you have moved).
Moví uno demis sitios web a unnuevo dominio,a continuación semuestra lo que hice.
phpmyadmin
Ahora,losproblemas a los queme enfrento son:
wp-admin
también se redirige al dominio antiguo cuandointentoejecutarmydomain.com/wp-admin
Porfavor,ayude sitiene algunaidea al respecto; cualquier ayuda serámuy apreciada.