Last active
September 28, 2024 14:35
-
-
Save matiasmasca/16e11d47e2811d7a765e to your computer and use it in GitHub Desktop.
Migrar sitio WordPress de Desarrollo a Producción
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Consulta para migrar la base de datos de WordPress de desarrollo a producción. Cambiando el dominio actual de desarrollo por la dirección final. | |
Gracias Sergio A. Moreyra. | |
OJO esto puede dejar afuera otras tablas creadas por pluggins y themes. | |
UPDATE wp_options | |
SET option_value = replace(option_value,'http://www.TuSitio.com/desarrollo', 'http://www.TuSitio.com') | |
WHERE option_name = 'home' OR option_name = 'siteurl'; | |
UPDATE wp_posts | |
SET guid = REPLACE (guid, 'http://www.TuSitio.com/desarrollo', 'http://www.TuSitio.com/'); | |
UPDATE wp_posts | |
SET post_content = REPLACE (post_content, 'http://www.TuSitio.com/desarrollo', 'http://www.TuSitio.com'); | |
UPDATE wp_posts | |
SET post_content = REPLACE (post_content, 'src=" http://www.TuSitio.com/desarrollo/', 'src=" http://www.TuSitio.com/'); | |
UPDATE wp_posts | |
SET guid = REPLACE (guid, 'http://www.TuSitio.com/desarrollo', 'http://www.TuSitio.com') | |
WHERE post_type = 'attachment'; | |
UPDATE wp_postmeta | |
SET meta_value = REPLACE (meta_value, 'http://www.TuSitio.com/desarrollo','http://www.TuSitio.com'); | |
======================================== | |
Otra solución es trabajar sobre un backup de la base de datos (dump) y remplazar allí directamente. | |
sed -i -e "s/${source_domain//\//\\/}/${target_domain//\//\\/}/g" $dump_db.sql | |
esas barras dentro de las llaves son para "escapar" si hay / (slash) |
esas barras dentro de las llaves son para "escapar" si hay / (slash)
Muy bueno, lo voy a intentar en la próxima. Tengo que agregar también los comandos para hacer el dump, no todos saben.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OJO... hay plugins q tb guardan la url del dominio, por ejemplo los site builders o themes premium
Yo por bash genero un .sql del dump de la base y con SED lo reemplazo:
sed -i -e "s/${source_domain//\//\\/}/${target_domain//\//\\/}/g" $dump_db.sql