Magmi Bundled Products and Re-indexing issue in Magento 1.7

陌路散爱 提交于 2020-02-01 09:19:07

问题


I am using Magento 1.7x version.I need to create a script to import products.I used Magmi as an Import Product Tool which helps me to

  1. import Simple ,Grouped and Configurable Products not bundle products
  2. create a script to run a cron job to automate the process.

Problem: My products are not showing on front end whereas these are visible on backend.I studied somewhere and i find its about re-indexing the database tables.

Questions: 1. How to rebuild index (script is cron job)after running a Magmi import process because i am unable to rebuild index using: =>On the fly indexer v0.1.5 =>Magmi Magento Reindexer v1.0.2

2.Does Magmi support importing bundled product with custom bundle types?

Thanx


回答1:


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.



来源:https://stackoverflow.com/questions/16145507/magmi-bundled-products-and-re-indexing-issue-in-magento-1-7

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