当我安装magento2时,我无法安装示例数据,使用示例数据'被禁用。我无法安装示例数据。我该如何解决?
注意:我能够在没有样本数据的情况下安装magento2。
答案 0 :(得分:0)
对于示例数据,请创建一个新数据库。在设置magento之前,首先下载' magento-sample-data-1.6.0.0.tar.gz'文件来自http://inchoo.net/magento/magento-sample-data/
提取具有sql文件的文件。将它从phpmyadmin或终端导入到新创建的数据库中。同时将媒体/目录文件夹复制到您的magento媒体
然后使用相同的数据库名称安装magento。
答案 1 :(得分:0)
在文档http://devdocs.magento.com/guides/v2.0/install-gde/install/composer-clone.html中有一个框
Article.objects.cached(<a user id>)
您可以点击此处的链接来了解问题:http://devdocs.magento.com/guides/v2.0/install-gde/trouble/tshoot_sample-data.html
然后抓住主分支,
您可以更好地使用示例数据:http://devdocs.magento.com/guides/v2.0/install-gde/install/sample-data.htm
答案 2 :(得分:0)
您可以在magento设置之前或之后安装magento样本数据。
请按照本教程中的步骤进行操作。它正在发挥作用。
当你按照步骤完成安装magento样本数据之前magento设置magento&#39;使用样本数据&#39;将为您启用。如果你已经设置了没有样本数据的magento,你也可以在magento setup之后安装样本数据。
答案 3 :(得分:0)
现在,您可以在安装软件之前或之后使用master(更稳定)或develop(更新)分支安装Magento 2样本数据。如果使用安装向导,则不再使用“使用样本数据”复选框。
请注意,通过GA,还会有一个命令行安装选项。
步骤摘要:
如果已安装Magento,请运行:
php / bin / magento setup:upgrade
参考:http://devdocs.magento.com/guides/v2.0/install-gde/install/web/install-web-sample-data.html
答案 4 :(得分:0)
您可以通过命令行安装示例数据:
php <your Magento install dir>/bin/magento sampledata:deploy
答案 5 :(得分:0)
只需使用
<php -dmemory_limit=6G /bin/magento sampledata:deploy>
命令然后升级和设置静态内容。别忘了刷新缓存
答案 6 :(得分:0)
安装样本数据。使用此命令安装示例数据
php bin/magento sampledata:deploy
此处系统将要求您的magento.com用户名和密码。使用您的magento存储公钥和私钥作为用户名和密码。 比运行此命令
php bin/magento setup:upgrade
比运行此命令
php bin/magento setup:static-content:deploy -f
答案 7 :(得分:0)
- 使用 composer 下载 Magento 项目
composer create-project --repository-url=https://repo.magento.com/magento/project-community-edition=2.4.0
- 使用命令安装 Magento 2
php bin/magento setup:install --base-url="http://localhost/magento240" --db-host="localhost" --db-name=magento240_db --db-user=root -- db-password=admin --admin-firstname="Admin" --admin-lastname="Magento" --admin-email="admin@gmail.com" --admin-user="admin" --admin-password ="admin@123" --use-rewrites="1" --backend-frontname="admin"
安装示例数据模块:
composer.json
添加依赖项:
composer require magento/module-bundle-sample-data magento/module-widget-sample-data magento/module-theme-sample-data magento/module-catalog-sample-data magento/module-customer-sample-data magento/module -cms-sample-data magento/module-catalog-rule-sample-data magento/module-sales-rule-sample-data magento/module-review-sample-data magento/module-tax-sample-data magento/module- sales-sample-data magento/module-grouped-product-sample-data magento/module-downloadable-sample-data magento/module-msrp-sample-data magento/module-configurable-sample-data magento/module-product-links -sample-data magento/module-wishlist-sample-data magento/module-swatches-sample-data magento/sample-data-media magento/module-offline-shipping-sample-data --no-update