skip to Main Content

Actually I know how to install extension which are are available in the stores. But my problem is how to install extension in Magento 2 which is installed locally and I have third party extension downloaded locally.

2

Answers


  1. You can install downloaded extension by just copying files from extension folder into app/code folder.

    Login or Signup to reply.
    1. Upload your extension on server for example your extension name is Mycompany_Custommenu and you upload extension to /var/www/html/extension/ folder path.
    2. Run below command in terminal.

      composer config repositories.mycompany_custommenu path /var/www/html/extension/Custommenu/
      
    3. Next run below command.

      composer require mycompany/custommenu
      
    4. Run setup:upgrade to enable Module.

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