Install Procedure
- Put your Magento in maintenance mode
bin/magento maintenance:enable
- Make a backup dumping your database
mysqldump --no-tablespaces -u username -p databasename > backup.sql
- Download your plugin from “My account” page.
- Using an FTP client, upload the files in your Magento root folder
- Run Magento setup upgrade command
bin/magento setup:upgrade
- Re-compile Magento system
php -d memory_limit=-1 bin/magento setup:di:compile;
php -d memory_limit=-1 bin/magento setup:static-content:deploy;
- Disable maintenance mode
bin/magento maintenance:disable
Table of Contents