I updated Migration Pro from 2.01 to 2.04, because we updated Magento to 2.1.0. After your update, we lost the progress on each step. See http://prntscr.com/bs36m7
We need to update Customer and Order data before we go live. We cannot afford to sync Product data again because we have made a lot of changes to that data.
Can we run step 2,6, and 7 without messing up any other data transferred?
Thanks
Anthony
2 answers
Hi amarkus,
Oh, you should be make a backup full of your site before you make any upgrade.
Can we run step 2,6, and 7 without messing up any other data transferred?
=> Yes, you can do as bellow to run with that route:
Open the file at path: pub/ub-tool/protected/controllers/MigrateController.php
and find to the code line:
$migrated_product_ids = isset(Yii::app()->session['migrated_product_ids']) ? Yii::app()->session['migrated_product_ids'] : array();
and replace it by code lines:
$models = Mage2CatalogProductEntity::model()->findAll();
if ($models) {
foreach ($models as $model) {
$migrated_product_ids[] = $model->entity_id;
}
}
Let’s do it and then you can run as you want.
And contact me if you need further assistance!
Regards,
Mall.
Hi Anthony,
The workaround @Mall noted above is specific for your case only. For any upcoming migration project you might have, please discard your current version and use our latest 2.0.5 (released yesterday) -- https://www.ubertheme.com/magento-updates/ub-data-migration-pro-update-info/
Thanks,
An Nguyen