面对Magento版本中的索引问题。 1.9.0.1平板产品价格为OFF。参考Sceenshot:http://prntscr.com/be7veh
我已经按照下面提到的链接仍然面临同样的问题: https://community.magento.com/t5/Installing-Magento-1-x/Cannot-reindex-Category-Products-Index-Process-Information/td-p/1603
https://magento.stackexchange.com/questions/24729/there-was-a-problem-with-reindexing-process
Magento - There was a issue with reindexing process - Catalog Products
Cannot initialize the indexer process
命令输出截图:prntscr.com/be81c0
答案 0 :(得分:0)
尝试使用ssh登录网站,然后转到magento根目录并使用命令'php shell / indexer.php --reindexall'
答案 1 :(得分:0)
某些插件会改变数据库结构。 尝试以下脚本并检查错误(只需将此代码粘贴到页脚并运行)。
$indexCollection = Mage::getModel('index/process')->getCollection();
foreach ($indexCollection as $index)
{
try
{
$index->reindexAll();
}
catch(Exception $e)
{
print_r($e->getMessage());
}
}