使用命令行刷新Magento索引管理 Rebuilt Magento Indexes in terminal with php-cli

magento索引管理

當我們網站商品很多的時候,比如有幾千件,我們刷新Magento的索引管理(Index Management)經常會失敗。那麼後臺刷新不了,我們還可以通過命令行來刷新。使用命令行來刷新索引管理會極大降低系統消耗,容易成功。
我們來看下步驟,如果你在使用linux服務器,登入你的ssh客戶端,切換目錄到你magento根文件夾中名字是shell的文件中。


在此文件夾中輸入如下命令

C代碼  收藏代碼
  1. php -f indexer.php -- -reindex catalog_url  
 

它的意思是刷新Catalog Url Rewrites即網址重寫。成功後會有成功提示,如:Catalog URL Rewrites index was rebuilt successfully

 

magento使用Shell刷新索引管理

 

magento使用Shell刷新索引管理

 

我們來看下有哪些索引管理,可以使用Shell的命令行來刷新,如下

1
2
3
4
5
6
7
8
catalog_product_attribute     Product Attributes
catalog_product_price         Product Prices
catalog_url                   Catalog Url Rewrites
catalog_product_flat          Product Flat Data
catalog_category_flat         Category Flat Data
catalog_category_product      Category Products
catalogsearch_fulltext        Catalog Search Index
cataloginventory_stock        Stock status

 

如上分別對應後每項臺的索引管理。

命令執行後需要耐心等待一段時間,因你商品數量和你服務器性能決定等待多久。注意命令中reinde前一共是三個英文橫線。如有代碼錯誤提示,直接黏貼本文的命令或者
如下參考文章的命令,直接修改執行參數即可。

 

來源: http://www.hellokeykey.com/magento-shell-reindex-index-management/

參考文章:http://inchoo.net/ecommerce/magento/executing-magento-indexer-from-shell/

 

Rebuilt Magento Indexes in terminal with php-cli

For the past 6 months, had been doing a lot of work with Magento. I’ve notice that the more I know the whole thing, the more I don’t want to share about it. Well, I still like to share some things though… so now it’s time to give some tips/tricks…

 

In your terminal do:

C代碼  收藏代碼
  1. cd /magento/shop/path/shell/  
 

where “/magento/shop/path” is your magento rooth path. For e.g. (in live terminal)

C代碼  收藏代碼
  1. user:~$ cd /home/cliper/magento/shell/  
 

after that, you can run the indexer by doing:

C代碼  收藏代碼
  1. php indexer.php reindex all  
 

that will re-index all available indexes in magento.

Well, you can always run it in one command like:

C代碼  收藏代碼
  1. php /home/cliper/magento/shell/indexer.php reindex all  
 

For help on how to use the indexer and available arguments do:

C代碼  收藏代碼
  1. php indexer.php  
 

For a list of available indexes do:

C代碼  收藏代碼
  1. php indexer.php info  
 

and you should be able to see a list of indexes something like this:

 

C代碼  收藏代碼
  1. catalog_product_attribute     Product Attributes  
  2. catalog_product_price         Product Prices  
  3. ...                           ...  
 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章