Task | How to Do It | Tools |
---|---|---|
Point‑and‑click migrations | Use a plugin on the source site | Choose a stable and well-supported migration plugin or service. |
Manual migrations / restores | Upload archives & import via SSH | Any .zip/.tar of wp‑content + SQL dump |
Backups & cloning | Create and Download Backups | Built‑in WP Cloud backup service |
Custom DB prefixes are fully supported—just update $table_prefix in wp‑config.php before import.
wget <direct‑download‑url>
cd /tmp
unzip site.zip # or tar -xvf / gunzip
mv extracted/wp-content .
mv extracted/database.sql .
rsync -zavh /tmp/wp-content/ /htdocs/wp-content/
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.
Symptom | Likely Cause | Fix |
---|---|---|
White screen | Prefix mismatch | Update $table_prefix |
Import hangs | SQL > 10 GB | Split or trim dump |
Core files in archive | Duplicate WordPress files | Delete them—WP Cloud supplies core |