Skip to content

14-day free trial!

Adobe Commerce / Magento
Integration

Magentoo

Other Integrations

Shopify

Bigcommerce

Woocommerce

API Guía de Integración

Installation of the Critical.net fraud prevention extension on Adobe Commerce / Magento

Get Critical.net from Adobe Commerce / Magento MarketPlace

  1. Log in or create an account at https://marketplace.magento.com.
  2. Find Critical.net in the Adobe Commerce Marketplace: Critical.net
  3. Ensure you accurately select the version of Adobe Commerce you are using when adding Critical.net to the cart.

    Critical.net Magento Market Place
  4. Accept the order.
  5. Click on Install.
  6. Find the Composer name and plugin version from the My Purchases page of the Adobe Commerce Marketplace.
  7. Add Critical.net to your Adobe Commerce shopping cart. Make sure to choose the version of Adobe Commerce you’re using when adding Critical.net to the cart.
  8. From the Marketplace in Adobe Commerce, create a “New Access key”. My profile > Access Keys > Create a new access key.

    Critical.net Magento crear access key

SSH installation

  1. Login to your SSH and run:

    composer require critical_net/magento-2-critical-fraud-prevention

  2. Enter your authentication keys.
    Your public key is your username; your private key is your password.

  3. Wait for Composer to finish updating your project dependencies and make sure there aren’t any errors.

  4. To verify that the extension installed properly, run the command:

    php bin/magento module:status Critical_Apicall

  5. By default, the extension is probably disabled. Enable the extension and clear static view files:

    php bin/magento module:enable Critical_Apicall --clear-static-content
    php bin/magento setup:upgrade
    php bin/magento setup:di:compile

  6. For Magento versions 2.0.x to 2.1.x

    php bin/magento setup:static-content:deploy

  7. For Magento version 2.2.x and higher

    php bin/magento setup:static-content:deploy –f

  8.  Clear the cache:

    php bin/magento cache:flush

Connecting your Critical.net account with your Adobe Commerce account

  1. To configure the extension, login to Magento 2, go to your backend: Stores > Configuration > Critical.net > Configuration

    Critical.net Magento - Configuracion
  2. API Key: Enter the API Key sent by Critical.net during registration.
    1. If you do not have a Critical.net account: Create a new account.
    2. If you already have a Critical.net account: log in to the Critical.net platform, and then click on Merchant Systems
  3. Click to create a new one.

    01-sistemas-del-comerciante
  4. Add your website’s URL and in "Type" write = "Magento" and then click submit.

    02-critical-net-agregar-sistema-del-comerciante
  5. Click on "Generate License Key". To view the license key, click on the eye icon on the right.

    02-critical-net-api-key
  6. On the backend of Adobe Commerce: Copy-paste the option " API Key" on the configuration area of the Adobe Commerce 2 Extension.
  7. Origin: enter the URL of your store.

    Critical.net - Magento - Origen: ingrese el URL de tu tienda.
  8. Installation of Critical.net Fraud Prevention Extension for Adobe Commerce Completed


Adobe Commerce Upgrade (Magento)

  1. Log in to your SSH and run:

    composer require critical_net/magento-2-critical-fraud-prevention
  2. If you are performing a major upgrade, e.g. going from version 1.x.x to 2.x.x you should include the version number, e.g. to upgrade to version 2.1.0:

    composer require critical_net/magento-2-critical-fraud-prevention ^2.1.0
  3. Wait for Composer to finish updating your project dependencies and make sure there aren’t any errors.
  4. Verify the new version has been updated run:

    composer show critical_net/magento-2-critical-fraud-prevention
  5. Run the setup upgrade and compile the code:

    php bin/magento setup:upgrade
    php bin/magento setup:di:compile
  6. Deploy the static view files. For Magento version 2.0.x to 2.1.x

    php bin/magento setup:static-content:deploy
  7. Deploy the static view files. For Magento version 2.2.x & above

    php bin/magento setup:static-content:deploy –f
  8. Clear the cache:

    php bin/magento cache:flush
Back To Top