Magmi Bundled Products and Re-indexing issue in Magento 1.7

回眸只為那壹抹淺笑 提交于 2019-12-04 19:50:56

in a cron job, you could run the magento indexer (which is the program called by magmi for reindexing) , using the following command lines (better put them at the end of the shell script that is ran by cron)

cd <yourmagentodir>/shell
php indexer.php --reindex catalog_product_attribute
php indexer.php --reindex catalog_product_price
php indexer.php --reindex catalog_product_flat
php indexer.php --reindex catalog_category_flat
php indexer.php --reindex catalogsearch_fulltext
php indexer.php --reindex cataloginventory_stock

There are other indexes, but both catalog_category_product & catalog_url are handled much more efficiently by on the fly indexer plugin.

Magmi does not support bundled yet.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!