Migrate ShipperHQ from Magento 1 to Magento 2
Seamlessly Transition ShipperHQ from Magento 1 to Magento 2 for Enhanced Performance
Table of Contents
Overview
😊 When moving from Magento 1 to Magento 2, additional steps are necessary to transition the ShipperHQ extension. The file structures differ significantly between these versions. Ensure you follow Magento's migration steps alongside these instructions. 💡 This guide assumes familiarity with MySQL, and the SQL commands provided are for guidance—adjust them as needed for your database setup.
Steps
- Follow the extension uninstallation guide.
- Clean up the Core Config table:
SELECT * FROM `core_config_data` WHERE `value` like '%shipperhq_shipper%' or `value` like '%shq%'; DELETE FROM `core_config_data` WHERE `value` like '%shipperhq_shipper%' or `value` like '%shq%';
Note: Ensure that the values returned are accurate before deleting. ⚠️
- Verify the Core Config is clean:
SELECT * FROM `core_config_data` WHERE `value` like '%shipperhq_shipper%' or `value` like '%shq%';
Clean up product attribute references:
SELECT * FROM `eav_attribute` WHERE `source_model` like '%shipperhq%'; UPDATE `eav_attribute` set `source_model` = '' WHERE `source_model` like '%shipperhq%';
Proceed with the Magento 2 installation guide.
By following these steps, you'll ensure a smooth transition of ShipperHQ from Magento 1 to Magento 2! 😊