Composer installation
If you are installing an extension from Aheadworks for the first time, you need to add our composer repository to your Magento store.
Login to your ssh console and navigate to your store folder:
cd path_to_the_store_root_folder |
2.Run the following command to install the latest version of the extension:
composer require aheadworks/module-langshop |
3. Enable the extension:
bin/magento module:enable Aheadworks_Langshop |
4. Next, register the extension:
bin/magento setup:upgrade |
5. Execute compilation of static assets:
bin/magento setup:static-content:deploy --area adminhtml |
6. Recompile your Magento store if you are in the Production mode:
bin/magento setup:di:compile |
7. To verify that the extension is enabled, run this command:
bin/magento module:status |
8. Go to Configuration - Services - Oauth and set Allow OAuth Access Tokens to be used as standalone Bearer tokens to Yes
9. Clean store cache, by running the following command:
bin/magento cache:flush |
Log out and Log in to the backend again.
To upgrade the extension:
When prompted, enter Composer Public Key (Username) and Private Key (Password):
Username AAAAB3NzaC1yc2EAAAADAQABAAABAQDWg8Ai732XTO5K2vz6dDWEUaNNRU+yXKiu
Password MIIEpAIBAAKCAQEA1oPAIu99l0zuStr8+nQ1hFGjTUVPslyorux2uUgMM1/okHfI |
Update per module name:
composer update aheadworks/module-langshop |
Updater per version:
composer require aheadworks/module-langshop:<version> |
Run the following commands to upgrade, deploy, and clean the cache.
php bin/magento setup:upgrade --keep-generated bin/magento setup:static-content:deploy -f php bin/magento setup:static-content:deploy php bin/magento cache:clean |