skip to Main Content

How can I add DHL Market Place in my Magento 2 admin? Been searching on how to enable it but can’t find any solution. Should I just copy the download file into the app folder? or do I need to go to the admin panel?

Note: Beginner here

2

Answers


  1. Chosen as BEST ANSWER

    Ok for those who will be encountering the same issue as I have here is the answer and I'm referring this to the answer that the developer gave me.

    If you are running in PHP 7+ and want to install via VCS then below are the command you need to run and DON'T use installation that they provided in the README.md specially for version 0.10.0. It lacks the proper instruction on how to install it in Magento 2.3 using version 0.10.0 Below are the correct command needed to run and install DHL in your Magento project

    composer config repositories.dhl-shipping-m2 vcs [email protected]:netresearch/dhl-module-shipping-m2.git <-- This is the important part to make it work
    
    composer require dhl/module-shipping-m2:0.10.0
    

  2. Magento2 follows a structure to add custom modules .. Their are two ways to add extensions in m2..

    1 : Install it from the composer Eg: for DHL to install from composer

    composer require dhl/module-shipping-m2:0.10.0

    It will directly saved in vendor folder

    2 : Manual installation , Download the extension and copy that into the magento root ie.. app/code/yourextension

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search