> ## Documentation Index
> Fetch the complete documentation index at: https://docs.paytring.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Magento

> Integrate with Magento  using our SDK.

# 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:

   ```bash theme={null}
   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:

   ```bash theme={null}
   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.

   ![image.png](https://prod-files-secure.s3.us-west-2.amazonaws.com/35a4d6ed-4d60-43f1-b7e8-e45d02ea25fa/c4be6343-f8e6-4b7e-ab56-466d11075412/image.png)

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

   ![image.png](https://prod-files-secure.s3.us-west-2.amazonaws.com/35a4d6ed-4d60-43f1-b7e8-e45d02ea25fa/2044b55a-cc85-407b-b39a-658262d996b9/image.png)

3. Look for the n**ewly 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. 🎉
