Overview
When migrating from Magento 1 to Magento 2 there are some additional steps for the migration of the ShipperHQ Magento 1 extension to the Magento 2 extension as the files are completely different. This is for use with the Magento migration steps.
This article assumes that the user has knowledge of MySQL and the SQL code below is designed for guidance – please amend accordingly for your database.
Steps
- Follow the extension uninstallation guide
- Clean up 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%';
NB: Please ensure that the values returned are correct before deleting.
- Ensure 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%';
- Follow the Magento 2 installation guide