I have a test of the migration of machine to machine in 1.7.1.
Please advice because it does not go well.
My procedure was to reference http://www.oxwall.org/forum/topic/24134.
At the from machine:
1. deactivate all third-party plugins.
2. turn on 'maintenance mode"
3. zip -r backup.zip * .htaccess;
4. mysqldump --opt --user= --password= --database xxxx > backup.sql;
At the to machine:
5. create database yyyy;
6. grant all privileges on yyyy .* to .....;
7. mysql -u root -p yyyy < backup.sql;
8 unzip backup.zip;
9. change 'OW_URL_HOME' 'OW_DB_USER' 'OW_DB_PASSWORD' and 'OW_DB_NAME' in ow_includes/config.php
10. turn "maintenance Mode" off.
11. activate all third-party plugins.
It is almost no problem,
but sometime uploading lang or plugin has make "Error 500" or "xpath() " in To machine.
I want to know the correct procedure of migration.
I think it's crucial thing to the operation of the SNS site.