我是Magento的新手。当我尝试将Magento安装到Localhost时,它会给出以下错误 -
一个或多个索引器无效。确保您的Magento cron作业 运行
以下是截图:
我已尝试以下方法重新编制索引器索引 -
php bin/magento indexer:reindex
我上面没有找到任何帮助。
为什么会出现此错误?请帮我解决这个错误。
谢谢!
答案 0 :(得分:0)
您必须使用cmd命令重新索引所有索引。
php bin/magento indexer:reindex
如需更多命令,请查看http://devdocs.magento.com/guides/v2.1/config-guide/cli/config-cli-subcommands-index.html
这不是错误,无论何时安装magento都需要构建索引。
答案 1 :(得分:0)
要在Magento 2中重新编制索引,请转到您的Magento安装的viewConfig: {
onBeforeExpand: function (n) {
if (n.childNodes.length === 0) {
//HERE YOU MUST DO REQUEST AND IN CALLBACK:
n.appendChild(twoItemNodes);
n.expand();
return false;
}
}
}
,然后转到CLI
,然后运行以下命令:
root folder