Skip to content
  • There are no suggestions because the search field is empty.

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

  1. Follow the extension uninstallation guide.
  2. 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. ⚠️

  3. Verify the Core Config is clean:

    SELECT * FROM `core_config_data` WHERE `value` like '%shipperhq_shipper%' or `value` like '%shq%';
    
  4. 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%';
    
  5. 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! 😊