cordial / magento2-sync-module
Cordial/Magento2集成RFP
2.4.6-p3
2024-02-05 17:21 UTC
This package is auto-updated.
Last update: 2024-09-16 19:06:48 UTC
README
Cordial/Magento集成RFP
安装
使用Composer安装
进入Magento 2的根目录(cd your-app-folder-name)
composer require cordial/magento2-sync-module
Composer将自动安装依赖项。
安装后注册扩展
bin/magento setup:upgrade
重新编译您的Magento项目
bin/magento setup:di:compile
验证扩展是否启用
bin/magento module:status
手动安装
要安装模块,您需要将仓库克隆到您的Magento 2应用程序文件夹"your-app-folder-name/app/code/cordial/magento2-sync-module"。例如(使用https)
$ cd <your-app-folder-name>/app/code/
$ git clone https://gitlab.com/cordialinc/integrations/magento/magento2.git cordial/sync
或者直接从网站上下载并以相同方式解压。
启用扩展并清除静态视图文件
bin/magento module:enable Cordial_Sync --clear-static-content
注册扩展
bin/magento setup:upgrade
重新编译您的Magento项目
bin/magento setup:di:compile
验证扩展是否启用
bin/magento module:status
更多详细信息请参见http://devdocs.magento.com/guides/v2.2/comp-mgr/install-extensions.html
升级magento模块
下一步是升级您的应用程序,以便在magento 2系统中注册模块。但在那之前,您需要确保这一点
$ ./bin/magento setup:db:status
因此,如果需要,您需要进入Magento 2的根目录(cd your-app-folder-name)并输入
$ ./bin/magento setup:upgrade
不要忘记模块的权限
sudo find . -type d -exec chmod 755 {} \; && sudo find . -type f -exec chmod 644 {} \;