PHPackages                             convert-cart/analytics - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. convert-cart/analytics

ActiveMagento2-module[Utility &amp; Helpers](/categories/utility)

convert-cart/analytics
======================

Magento 2 plugin to integrate convertcart

1.0.20(2mo ago)02.4k↓72.3%2OSL-3.0PHPPHP ~5.5.0|~5.6.0|^7.0|^8.0

Since Mar 6Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/convert-cart/magento2-plugin)[ Packagist](https://packagist.org/packages/convert-cart/analytics)[ RSS](/packages/convert-cart-analytics/feed)WikiDiscussions master Synced yesterday

READMEChangelog (8)Dependencies (4)Versions (39)Used By (0)

Convert Cart Magento 2 Plugin
=============================

[](#convert-cart-magento-2-plugin)

[![Magento 2](https://camo.githubusercontent.com/cbed1599dfff53a4b5c3e8b2c8ae237b2a4248ad3f3e5ab24415d84237ca37b7/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4d6167656e746f2d322d627269676874677265656e2e737667)](https://camo.githubusercontent.com/cbed1599dfff53a4b5c3e8b2c8ae237b2a4248ad3f3e5ab24415d84237ca37b7/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4d6167656e746f2d322d627269676874677265656e2e737667)[![License](https://camo.githubusercontent.com/5a7120689c6a9f8c648e3e604bc989a01df47a92155a928d025400b453c7f908/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d50726f70726965746172792d7265642e737667)](https://camo.githubusercontent.com/5a7120689c6a9f8c648e3e604bc989a01df47a92155a928d025400b453c7f908/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d50726f70726965746172792d7265642e737667)[![Packagist](https://camo.githubusercontent.com/ea1b7cee62300606f53c063bd38f1c56f549cecd52d0b40efac9b2e67bc8e1e0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f636f6e766572742d636172742f616e616c79746963732e737667)](https://packagist.org/packages/convert-cart/analytics)

Table of Contents
-----------------

[](#table-of-contents)

- [Introduction](#introduction)
- [Features](#features)
- [Installation](#installation)
    - [Composer Installation](#composer-installation)
    - [Manual Installation](#manual-installation)
- [Configure Domain Id](#configure-domain-id)
- [Troubleshooting](#troubleshooting)
- [Contact](#contact)

Introduction
------------

[](#introduction)

Welcome to the Magento 2 Plugin by Convert Cart. This plugin integrates seamlessly with Magento 2 ecommerce websites, enabling the tracking of user behavior. Additionally, it synchronizes crucial data such as product catalogs, order histories, customer profiles, and category information to our servers on a regular basis. This synchronization powers our recommendation engine, providing personalized and data-driven insights to enhance your ecommerce operations.

Features
--------

[](#features)

- Script injection on the frontend for user behavior tracking.
- Token generation for synchronizing product/order/customer/category data to Convert Cart servers for recommendations.
- Product deletion tracking to avoid recommending deleted products to the visitors of the store.

Installation
------------

[](#installation)

### Composer Installation

[](#composer-installation)

1. Run the following command in the root folder of your Magento installation when the domain is added in app.convertcart.com (for production):

    ```
    composer require convert-cart/analytics
    ```

    If you're intending to setting up a domain in app-beta.convertcart.com (for beta testing), please use tag name followed by the suffix `-beta` like `1.0.14-beta`. The command will be like,

    ```
    composer require convert-cart/analytics:1.0.14-beta
    ```

    If you wanted to know the exact changes that's needed to setup a beta server on a production tag, you can take a look into this [commit](https://github.com/convert-cart/magento2-plugin/commit/7fcd6766d00aa0c1f9c24365864a5738bc893252).
2. After installing via Composer, run the following commands from the Magento root directory:

    ```
    php bin/magento maintenance:enable
    php bin/magento setup:upgrade
    php bin/magento setup:di:compile
    php bin/magento setup:static-content:deploy -f
    php bin/magento maintenance:disable
    php bin/magento cache:flush
    ```

### Manual Installation

[](#manual-installation)

1. Download the latest version of the plugin from the [releases](https://github.com/convert-cart/magento2-plugin/releases) page.
2. Extract the downloaded archive.
3. Upload the contents to the `app/code/convert-cart/analytics` directory of your Magento installation.
4. Run the following commands from the Magento root directory:

    ```
    bin/magento module:enable Convertcart_Analytics
    bin/magento setup:upgrade
    bin/magento setup:di:compile
    bin/magento setup:static-content:deploy -f
    bin/magento cache:clean
    bin/magento cache:flush
    ```

Configure Domain Id
-------------------

[](#configure-domain-id)

Please reach out to your Customer Support Manager to Configure your domain with Convert Cart.

Troubleshooting
---------------

[](#troubleshooting)

If you encounter issues, try the following steps:

1. Ensure the plugin is enabled: `bin/magento module:status Convertcart_Analytics`
2. Clear Magento cache: `bin/magento cache:clean`
3. Check the logs in `var/log` for any error messages.

Uninstall
---------

[](#uninstall)

Please use the following command to uninstall the plugin and delete all the tables and settings related to the plugin,

```
  bin/magento module:uninstall Convertcart_Analytics

```

### Setting up folder &amp; file permissions,

[](#setting-up-folder--file-permissions)

If you encounter folder permission issues on folder such as cache, please use the following commands to set the appropriate permissions for public files and directories:

- Goto magento2 directory

    ```
    find . -type f -exec chmod 644 {} \;
    find . -type d -exec chmod 755 {} \;
    find var pub/static pub/media app/etc generated/ -type f -exec chmod g+w {} \;
    find var pub/static pub/media app/etc generated/ -type d -exec chmod g+ws {} \;
    chown -R : . #(usually by default magento user and we user used to be www-data, check it with your server administrator)
    chmod u+x bin/magento

    ```
- 644 sets files to read and write for the owner, and read-only for group and others.
- 755 sets directories to read, write, and execute for the owner, and read and execute for group and others.

Contact
-------

[](#contact)

Please contact  if any issues occur during the integration process.

For Development
---------------

[](#for-development)

### Code Quality: PHPCS and PHPCBF

[](#code-quality-phpcs-and-phpcbf)

- **PHP\_CodeSniffer (PHPCS):**
    - Used to check your code for compliance with Magento 2 and PHP coding standards.
    - Run `phpcs .` in the project root to see all coding standard violations and warnings.
- **PHP Code Beautifier and Fixer (PHPCBF):**
    - Used to automatically fix many coding standard violations found by PHPCS.
    - Run `phpcbf .` in the project root to auto-fix fixable issues.

> **Note:** PHPCS and PHPCBF are installed as development dependencies. If you do not have them globally, you can run them via Composer:
>
> ```
> ./vendor/bin/phpcs .
> ./vendor/bin/phpcbf .
> ```

After making any changes to the master branch, you can create new version tags (for beta and production) by running the following command:

```
  bash tagger.sh VERSION_NUMBER

```

Make sure to replace `VERSION_NUMBER` with the actual version number you want to create.

###  Health Score

55

—

FairBetter than 97% of packages

Maintenance88

Actively maintained with recent releases

Popularity22

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity78

Established project with proven stability

 Bus Factor1

Top contributor holds 59.3% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~81 days

Recently: every ~8 days

Total

33

Last Release

60d ago

PHP version history (2 changes)1.0.1PHP ~5.5.0|~5.6.0|^7.0

1.0.4PHP ~5.5.0|~5.6.0|^7.0|^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/f881c0eb1973a60e42e5b96dae55429767a81e66dba0d3caaa2fc36708088b8a?d=identicon)[udhayakumaran](/maintainers/udhayakumaran)

![](https://www.gravatar.com/avatar/ab07f95f1b02d45e85fe1c87349e6d98888e7485926a5c0a4783eaa4bd975c7c?d=identicon)[raguljrcc](/maintainers/raguljrcc)

---

Top Contributors

[![udhayakumaran](https://avatars.githubusercontent.com/u/1017043?v=4)](https://github.com/udhayakumaran "udhayakumaran (105 commits)")[![cc-gouthamkishore](https://avatars.githubusercontent.com/u/163513501?v=4)](https://github.com/cc-gouthamkishore "cc-gouthamkishore (41 commits)")[![mitanshu-cc](https://avatars.githubusercontent.com/u/176110350?v=4)](https://github.com/mitanshu-cc "mitanshu-cc (16 commits)")[![aamir-blr](https://avatars.githubusercontent.com/u/12637911?v=4)](https://github.com/aamir-blr "aamir-blr (5 commits)")[![Aditya-ConvertCart](https://avatars.githubusercontent.com/u/251283789?v=4)](https://github.com/Aditya-ConvertCart "Aditya-ConvertCart (5 commits)")[![raguljrcc](https://avatars.githubusercontent.com/u/170097759?v=4)](https://github.com/raguljrcc "raguljrcc (3 commits)")[![sam7789](https://avatars.githubusercontent.com/u/64655147?v=4)](https://github.com/sam7789 "sam7789 (1 commits)")[![morvi-1296](https://avatars.githubusercontent.com/u/203076069?v=4)](https://github.com/morvi-1296 "morvi-1296 (1 commits)")

---

Tags

conversion-rate-optimizationmagento2-crorecommendation-engine

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/convert-cart-analytics/health.svg)

```
[![Health](https://phpackages.com/badges/convert-cart-analytics/health.svg)](https://phpackages.com/packages/convert-cart-analytics)
```

###  Alternatives

[elgentos/regenerate-catalog-urls

Regenerate Catalog URL Rewrites (products, categories, cms pages)

2842.6M](/packages/elgentos-regenerate-catalog-urls)[nosto/module-nostotagging

Increase your conversion rate and average order value by delivering your customers personalized product recommendations throughout their shopping journey.

27703.7k4](/packages/nosto-module-nostotagging)[tig/postnl-magento2

TIG Magento 2 PostNL extension

59570.5k5](/packages/tig-postnl-magento2)[myparcelnl/magento

A Magento 2 module that creates MyParcel labels

1860.2k](/packages/myparcelnl-magento)[loki/magento2-components

Core module for defining Alpine.js components with advanced AJAX features

1011.8k26](/packages/loki-magento2-components)[zwernemann/module-withdrawal

Magento 2 EU Withdrawal Button Module - Adds a withdrawal/revocation button for orders in compliance with EU Directive (EU) 2023/2673

244.8k2](/packages/zwernemann-module-withdrawal)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
