FAQ for Magento 2
How do I update the Module using SSH?
If you need to update the module please follow these steps:
- Log into your Linux server terminal
- Navigate to your Magento 2 root folder
- Run the command:
composer update
- Run the command:
php bin/magento setup:upgrade
- Run the command:
php bin/magento cache:flush
If you are running your Magento 2 in production mode you need to run the following command
- Run the command:
php bin/magento setup:static-content:deploy
- Run the command:
php bin/magento indexer:reindex
How do I uninstall the Module using SSH?
If you need to uninstall the module, please follow these steps:
- Log into your Linux server terminal
- Navigate to your Magento 2 root folder
- Run the command:
composer remove bambora/module-payment-magento2
- Run the command:
php bin/magento setup:upgrade
- Run the command:
php bin/magento cache:flush
If you are running your Magento 2 in production mode you need to run the following command
- Run the command:
php bin/magento setup:static-content:deploy
- Run the command:
php bin/magento indexer:reindex