The Home for Magento 2 Excellence

Quality-tested Magento 2 modules. Explore. Evaluate. Elevate. #magento2

1090 Modules
617 Ready
473 Need Help
🏆 Leaderboard
Actively Maintained v2.4.0

Mage UniTY (Magento–TYPO3 Connector) for Magento 2

webvision/unity

Connects Magento 2 with the TYPO3 CMS, letting merchants manage storefront content in TYPO3 alongside or inside their Magento store for content marketing and SEO.

68
Downloads
Below average
0
GitHub Stars
3mo ago
Last Release
0
Open Issues
Build Issues
2/3 checks passed

Build Tests

Composer Install
DI Compile
Templates

Code Quality

CS Coding Standard
15 errors , 1039 warnings
PHPStan Failed

Tested on Magento 2.4.9

Recent Test History

Each release is tested against the latest Magento version at that time.

v2.4.0 on Magento 2.4.9
Jun 7, 2026
v2.3.9 on Magento 2.4.9
Jun 2, 2026

Looking for Contributors

Dependency injection compilation fails. Your contribution could help the entire Magento community!

Contribute

Share This Module's Status

Mage UniTY (Magento–TYPO3 Connector) for Magento 2 Magento compatibility status badge

README

Loaded from GitHub

Magento to TYPO3 Connector: Mage UniTY for Magento 2 and TYPO3

The Mage UniTY extension, developed by web-vision, allows seamless integration of the TYPO3 content management system with an existing Magento 2.x shop. This integration enhances search service optimization, improves visitor experience, and facilitates professional content marketing for your Magento store. Use TYPO3 as content mamagement system inside or side-by-side for your Magento sore.

Checkout the video here: https://youtu.be/q6b1Eg8bS7k

System Requirements

Mage UniTY Setup Guide

Follow these simple steps to set up Mage UniTY via composer or manual installation.

Installation via Composer:

  1. Open your Magento 2 root folder in your terminal.
  2. Run the following command to install the Mage UniTY module:
    composer require extendware/unity
    
  3. Apply database updates by running php bin/magento setup:upgrade
  4. Flush the cache by running php bin/magento cache:flush

Manual Installation:

  1. Unzip the zip file in app/code/WebVision/Unity
  2. Enable the module by running php bin/magento module:enable WebVision_Unity
  3. Apply database updates by running php bin/magento setup:upgrade
  4. Flush the cache by running php bin/magento cache:flush

Adding New Connection Parameters for TYPO3 Database in app/etc/env.php

To establish a connection to the TYPO3 database in Magento 2, you need to add new connection parameters to the app/etc/env.php file. Here is an example of how these parameters should be configured:

'db' => [
    'table_prefix' => '',
    'connection' => [
        'default' => [
            // Default Magento database connection parameters
            // ...
        ],
        'typo3' => [
            // TYPO3 database connection parameters
            'host' => '127.0.0.1:54030',
            'dbname' => 'db',
            'username' => 'db',
            'password' => 'db',
            'model' => 'mysql4',
            'engine' => 'innodb',
            'initStatements' => 'SET NAMES utf8;',
            'active' => '1',
            'driver_options' => [
                1014 => false
            ]
        ]
    ]
],

Further documentation

Further documentation can be found here: https://docs.extendware.com/unity/index.html

This content is fetched directly from the module's GitHub repository. We are not the authors of this content and take no responsibility for its accuracy, completeness, or any consequences arising from its use.