rsync is kinda advanced. If you're a basic user, just zip all the files, and create a backup of the database (phpMyAdmin has a "backup" utility that makes this easy).Use rsync, it will use incremental backup method.
ok nice. I did that actually on a site I had... just copy the contents into my new wp file?rsync is kinda advanced. If you're a basic user, just zip all the files, and create a backup of the database (phpMyAdmin has a "backup" utility that makes this easy).
ok nice. I did that actually on a site I had... just copy the contents into my new wp file?
Yeah. Pay attention to other server stuff too though:
Generally, your database is the most important part. It holds all the content (blog posts, WP accounts, post revisions, etc.). The files are slightly less important, but you should still back them up. They contain files needed by themes, plugins, etc.
- Do both servers have the same PHP version?
- Is the php configuration (php.ini) the same?
If you want to be extra careful, you can try restoring it to a different server and domain name, and see how it goes. Some minor changes will have to be made - like changing the domain name in the database to match the domain name you're testing on.
I've used this method to port from Windows (with MySQL) to CentOS (with MariaDB) and had no extra problems. But I am usually very consistent with my PHP setups. And MariaDB was built with the intention of making it as compatible with MySQL as possible.Yea it should be ok with the same os...