我有关于magento价格指数的问题。我的价格指数不起作用,我正在尝试做更多的事情,但它不起作用。我在我的不同网站上也面临着同样的问题。我使用magento 1.7.2、1.8、1.8.2
请帮我解决这个问题。
谢谢
Jitendra
发布于 2014-04-14 09:46:27
您可以尝试通过shell重新建立索引:
php indexer.php --reindex catalog_product_price
或者以编程的方式:
$price_process = Mage::getModel('index/indexer')->getProcessByCode('catalog_product_price');
$price_process->reindexAll();
发布于 2014-11-15 07:24:30
我在下面的步骤中解决了这个问题。
1)进行数据库备份
2)选择该表索引
3)删除所有索引数据后,删除外键和引用键
4)是否对所有内容重新编制索引
5)它在工作
https://stackoverflow.com/questions/23053074
复制