Topics

On this page

Last updated on Jul 24, 2025

WP Cloud: Migration & Restore Guide (Quick Reference)

1. What’s Supported

TaskHow to Do ItTools
Point‑and‑click migrationsUse a plugin on the source siteChoose a stable and well-supported migration plugin or service.
Manual migrations / restoresUpload archives & import via SSHAny .zip/.tar of wp‑content + SQL dump
Backups & cloningCreate and Download BackupsBuilt‑in WP Cloud backup service

Custom DB prefixes are fully supported—just update $table_prefix in wp‑config.php before import.

2. Restore Options

3. Manual Migration / Restore in 5 steps

Collect files

Prep & unpack

cd /tmp
unzip site.zip             # or tar -xvf / gunzip
mv extracted/wp-content .
mv extracted/database.sql .

Sync files

rsync -zavh /tmp/wp-content/ /htdocs/wp-content/

Import DB

Confirm table prefix → edit wp-config.php if needed.

wp db import /tmp/database.sql

Clean up & test

rm -rf /tmp/*

Visit the site and verify everything.

4. Troubleshooting

SymptomLikely CauseFix
White screenPrefix mismatchUpdate $table_prefix
Import hangsSQL > 10 GBSplit or trim dump
Core files in archiveDuplicate WordPress filesDelete them—WP Cloud supplies core

5. Large‑DB Import Errors

Need more help? Contact [email protected].