Install and Update via Ulmod Package Upload

 

 

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

  1. Download the extension's package from your Ulmod Customer Account
  2. Unpack the extension ZIP file on your computer
  3. Connect to your website source folder with FTP/SFTP/SSH client as a user who has permission to write to the Magento file system
  4. Upload all the files and folders from the extension's package to the corresponding root folder of your Magento installation
  5. Via SSH, navigate to the root Magento folder and run this command to enable the extension:
    php bin/magento module:enable Ulmod_ComponentName

    You can find the ComponentName in the extension’s registration.php file.

  6. 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, include them 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