Skip to content
English
  • There are no suggestions because the search field is empty.

OpenCart Integration (en)

To connect OpenCart with our platform, follow this two-step procedure:

 

  1. Add a new integration in the AfterSalesPro panel

  2. Install our plugin in your OpenCart installation


1. Add Integration in AfterSalesPro Panel

  1. Go to Settings → Integration.

  2. Click Add Integration.

  3. Enter your OpenCart store URL including the prefix, but without the trailing slash, e.g., https://mydomain.gr, then click Save.

  4. Copy the API Token and UUID from the Authentication Settings—you will need them for the plugin installation.


2. Install Plugin in OpenCart Administration Panel

  1. Download the plugin for your OpenCart version:

  2. In your OpenCart admin panel, go to Extensions → Installer and upload the downloaded ZIP file.

  3. Go to Extensions → Extensions → Modules, find AfterSalesPro Configuration, and enter the API Token and Platform UUID copied earlier. Set the Status to Enabled.

  4. Navigate to Extensions → Modifications and click the refresh icon to apply the changes.

Authorization fix (If needed)

Open the .htaccess file, find the line:

RewriteBase /

 

Then, add the following two lines after it (if they do not already exist):

RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]

 

The final file should look like this:

RewriteBase /
RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]