Install and Update via Magento Marketplace Package Upload

Marketplace Package Upload

Install via Package/Archive Upload

If you don't want to install via composer, you can use it this way.

  1. Download the extension package from your Magento Marketplace account.
  2. Unpack the extension ZIP file on your computer
  3. Access your website source folder with FTP/SFTP/SSH client as a user who has permission to write to the Magento file system
  4. Create the folder app/code/Ulmod/ModuleName. You can find the ModuleName in the extension’s registration.php file.
  5. Upload all the files and folders from the extension's package to the app/code/Ulmod/ModuleName folder
  6. Via SSH, navigate to the root Magento folder and run this command to enable the extension:
    php bin/magento module:enable Ulmod_ModuleName
  7. Update the database, deploy content, and clean cache:

    php bin/magento setup:upgrade
    php bin/magento setup:static-content:deploy
    • The bin/magento setup:static-content:deploy command deploy the default locale which is en_US, please add your additional locale there if you have more locale. eg. if you have additional en_GB nl_NL fr_FR locales then included it in the deploy command as follow: bin/magento setup:static-content:deploy en_US en_GB nl_NL fr_FR

    Empty the generated folder

    php bin/magento cache:clean