webvision/unity

Mage UniTY for Magento 2

2.2.9 2024-04-09 10:37 UTC

README

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