extendware / unity
Mage UniTY for Magento 2
2.3.5
2024-08-14 12:34 UTC
Requires
- php: ^5.5.22 || ^7.0.0 || ^8.0.0
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.
在此查看视频: https://youtu.be/q6b1Eg8bS7k
系统要求
- 一个运行中的TYPO3 CMS v11 LTS系统,并安装了Magento-TYPO3-UniTY扩展,可以在以下位置找到: https://github.com/web-vision/Magento-TYPO3-UniTY/
- Magento 2.4.x版本
Mage UniTY 安装指南
按照以下简单步骤通过composer或手动安装设置Mage UniTY。
通过Composer安装
- 在终端中打开您的Magento 2根目录。
- 运行以下命令安装Mage UniTY模块
composer require extendware/unity
- 通过运行php bin/magento setup:upgrade应用数据库更新
- 通过运行php bin/magento cache:flush清除缓存
手动安装
- 将zip文件解压到app/code/WebVision/Unity中
- 通过运行php bin/magento module:enable WebVision_Unity启用模块
- 通过运行php bin/magento setup:upgrade应用数据库更新
- 通过运行php bin/magento cache:flush清除缓存
在app/etc/env.php
中添加新的TYPO3数据库连接参数
为了在Magento 2中建立到TYPO3数据库的连接,您需要在app/etc/env.php文件中添加新的连接参数。以下是这些参数应该如何配置的示例
'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
]
]
]
],
进一步文档
进一步文档可以在此处找到: https://docs.extendware.com/unity/index.html