Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Unpack the downloaded package locally.
  2. Copy the content to your Magento 2 installation folder using FTP or SSH/SCP client.
  3. Login to your server via ssh and call the following commands in your Magento 2 installation folder:

    Code Block
    languagebash
    //Set developer mode if production mode is adjusted
    php bin/magento deploy:mode:set developer
    
    
    php bin/magento module:enable Nostress_Koongo
    php bin/magento setup:upgrade
    php bin/magento setup:static:deploy
    php bin/magento setup:di:compile
    php bin/magento cache:flush
    
    
    //Set production mode back if this mode was originally adjusted
    php bin/magento deploy:mode:set production
    
    
    //You can check current mode by
    php bin/magento deploy:mode:show


  4. After successful installation, module will appear at left backend menu. See image below.

     

...