我已下载付费扩展程序,他们提供的安装步骤如下: 1.解压扩展名 2.在app / code中上传 3.在cmd提示符下转到root并运行: php bin / magento setup:upgrade php bin / magento setup:static-content:deploy php bin / magento cache:flush
第一个问题是我的magento版本没有app / code文件夹,我已经检查了这个链接:
https://magento.stackexchange.com/questions/90913/how-to-install-custom-extension-in-magento2
但这也行不通。 我下载的扩展程序在解压缩时包含以下内容:
-- Block
-- etc
-- Gateway
-- Model
-- Observer
-- view
-- Changelog.md
-- composer.json
-- README.md
-- registeration.php
我尝试了以下步骤:
1. create a folder in root
2. and then took all content of extension in that folder
3. Then I ran commands:
php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy
php bin/magento cache:flush
但它没有用。
请让我知道我错过了什么。提前谢谢。
答案 0 :(得分:1)
只需在app文件夹中手动创建代码文件夹,然后将模块放在那里。结构必须是这样的:在你的应用程序/代码文件夹(你已创建)中,你有公司/模块文件夹(来自你复制过的模块)。
运行 bin / magento setup:upgrade 。