Installing Paazl's Magento 2 extension

This article explains how to install the Paazl extension for Magento 2 from the command line using Composer.

Note

The Paazl extension for Magento 2 works with Magento versions 2.x.

Before you start

Magento 2 uses Composer to manage the module package and the library. Composer is a dependency manager for PHP. Composer declares the libraries your project depends on and installs them for you.

Check whether your server has Composer installed by running the following command:

composer –v

If your server doesn’t have Composer installed, the Composer Getting Started page explains how to install it.

Installation procedure

Follow the steps below to install the Paazl Checkout widget in Magento 2.

Step 1. Run ssh console

Run your SSH Console to connect to your Magento 2 store.

Step 2. Go to root

Go to the root directory of your Magento 2 store.

Step 3. Install

Execute the following command in your root directory:

composer require paazl/checkoutWidget

Step 4. Cache and Deploy

Activate the extension, clean the caches, and deploy the content to your Magento 2 environment by executing the following commands in root in the order shown:

php bin/magento module:enable Paazl_Magento2
php bin/magento setup:upgrade
php bin/magento cache:clean

If Magento 2 is running in Paazl's production environment, deploy the static content by executing the following command:

php bin/magento setup:static-content:deploy

Was this article helpful?