sync-magento-2-migration
sync-magento-2-migration copied to clipboard
Release of rough proof of concept from 2018 that allows to import and export millions of products quickly
Export uses a single quote `'`: https://github.com/EcomDev/sync-magento-2-migration/blob/main/src/CsvFactory.php#L56 Import uses double quotes `"`: https://github.com/EcomDev/sync-magento-2-migration/blob/main/src/CsvReader.php#L24 Bug introduced in this commit: https://github.com/EcomDev/sync-magento-2-migration/commit/518807c02088e4ff6a0cbd4a09786e9d57bc12cd
There's a hard reference to Magento Enterprise tables here, causing issues with product export: https://github.com/EcomDev/sync-magento-2-migration/blob/main/src/ProductInfo.php#L408 I managed to get around it by excluding product URL rewrites, and generating rewrites using...