Compare commits

...

2 Commits

Author SHA1 Message Date
Ray Elliott f1f3d31fbe rename files 2020-09-09 11:51:24 +01:00
Ray Elliott 88d2314a8c wip 2020-09-09 11:50:37 +01:00
4 changed files with 56 additions and 20 deletions

View File

@ -1,20 +0,0 @@
#!/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

@ -0,0 +1,28 @@
#!/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

@ -0,0 +1,28 @@
#!/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