Skip to main content

FAQ for Magento 2

How do I update the Module using SSH?

If you need to update the module please follow these steps:

  1. Log into your Linux server terminal
  2. Navigate to your Magento 2 root folder
  3. Run the command: composer update
  4. Run the command: php bin/magento setup:upgrade
  5. 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

  1. Run the command: php bin/magento setup:static-content:deploy
  2. 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:

  1. Log into your Linux server terminal
  2. Navigate to your Magento 2 root folder
  3. Run the command: composer remove bambora/module-payment-magento2
  4. Run the command: php bin/magento setup:upgrade
  5. 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

  1. Run the command: php bin/magento setup:static-content:deploy
  2. Run the command: php bin/magento indexer:reindex