How to install Magento plugin on your shop?

Step 1: Upload the Extension

  1. Connect with Magento server via FTP/SFTP.
  2. Navigate to root directory where Magento is installed.
  3. You can upload the plugin .zip file directly to the Magento root directory via FTP/SFTP, then extract it to magento root > app > code > Quick. Please make sure that you have extracted the zip in Quick folder.

Step 2: Install the Extension

  1. Open the Magento root directory via SSH or terminal.

  2. Run the following commands to install the extension:

    php bin/magento module:enable Quick_QuickCheckout
    php bin/magento module:enable Quick_Api
    php bin/magento setup:upgrade
    php bin/magento setup:di:compile
    php bin/magento setup:static-content:deploy
    
  3. Clear the Magento cache using the command:

    php bin/magento cache:clean
    
  4. Navigate back to the Magento Admin Panel and refresh the page.

Step 3: Configure the Extension

  1. Navigate to Stores > Configuration from the sidebar.

  2. Scroll down to sales tab and go to Sales > Payment Methods

  3. Look for the newly added module in the list of payment methods.

Step 4: Update Configuration Settings

  1. Update the configurations as per your requirements.
  2. Enter your API keys and other required details.
  3. Save the configuration by clicking the Save Config button.

That’s it! This is how you can successfully install the payment module on your Magento shop. 🎉