Compare commits

..

No commits in common. "f1f3d31fbe83987f2fbad8d672b05536037f412e" and "d231870bca426a7cc3a0939155dbb6da7d09649e" have entirely different histories.

4 changed files with 20 additions and 56 deletions

View File

@ -0,0 +1,20 @@
#!/bin/sh
remote_domain='some.cloudwaysapps.com'
remote_ssh='user@some.cloudwaysapps.com'
remote_wp_path='/home/some.cloudwaysapps.com/aabbccddee/public_html'
local_domain='example.local'
local_wp_path='/var/www/html/wordpress'
rsync -azP wp-content/ "$remote_ssh:$remote_wp_path/wp-content" --delete-before
echo "DB size before:"
wp db size --ssh="$remote_ssh$remote_wp_path"
wp db export --path="$local_wp_path" --add-drop-table - | wp db import --ssh="$remote_ssh$remote_wp_path" -
echo "DB size after:"
wp db size --ssh="$remote_ssh$remote_wp_path"
wp search-replace "$local_domain" "$remote_domain" \
--ssh="$remote_ssh$remote_wp_path" \
--skip-columns=guid

View File

@ -1,28 +0,0 @@
#!/bin/sh
remote_protocol='https'
remote_domain='wordpress-453075-1468300.cloudwaysapps.com'
remote_ssh='test123@wordpress-453075-1468300.cloudwaysapps.com'
remote_wp_path='/home/453075.cloudwaysapps.com/mhhusspndh/public_html'
local_protocol='http'
local_domain='thecampsitebible.home'
local_wp_path='/var/www/html/wordpress'
rsync -azP "$local_wp_path/wp-content/" "$remote_ssh:$remote_wp_path/wp-content" --delete-before
echo "DB size before:"
wp db size --ssh="$remote_ssh$remote_wp_path"
wp db export --path="$local_wp_path" --add-drop-table - | wp db import --ssh="$remote_ssh$remote_wp_path" -
echo "DB size after:"
wp db size --ssh="$remote_ssh$remote_wp_path"
wp search-replace "$local_protocol://$local_domain" "$remote_protocol://$remote_domain" \
--ssh="$remote_ssh$remote_wp_path" \
--skip-columns=guid
--quiet
wp search-replace "$local_domain" "$remote_domain" \
--ssh="$remote_ssh$remote_wp_path" \
--skip-columns=guid
--quiet

View File

@ -1,28 +0,0 @@
#!/bin/sh
remote_protocol='https'
remote_domain='wordpress-453075-1468300.cloudwaysapps.com'
remote_ssh='test123@wordpress-453075-1468300.cloudwaysapps.com'
remote_wp_path='/home/453075.cloudwaysapps.com/mhhusspndh/public_html'
local_protocol='http'
local_domain='thecampsitebible.home'
local_wp_path='/var/www/html/wordpress'
rsync -azP "$remote_ssh:$remote_wp_path/wp-content/" "$local_wp_path/wp-content" --delete-before
echo "DB size before:"
wp db size --path="$local_wp_path"
wp db export --ssh="$remote_ssh$remote_wp_path" --add-drop-table - | wp db import --path="$local_wp_path" -
echo "DB size after:"
wp db size --path="$local_wp_path"
wp search-replace "$remote_protocol://$remote_domain" "$local_protocol://$local_domain" \
--path="$local_wp_path" \
--skip-columns=guid \
--quiet
wp search-replace "$remote_domain" "$local_domain" \
--path="$local_wp_path" \
--skip-columns=guid \
--quiet