SSH /パテ経由でマジェントを再インデックスする


8

私は経由で私のMagentoのinstllationにログインしたssh/putty私は、走った、cd public_html私のルートフォルダに取得した後、次のコマンドを実行しています:

php indexer.php --reindex catalog_product_attribute

しかし、何も起こりません。 ません「indexer.phpが見つかりませんでした」

私は内部で見てきたpublic_htmlcPanelの中にフォルダやという名前のファイルが存在しないindexer.phpだけで、index.phpとはindex.php.sample

誰か助けてもらえますか?


これは機能しますか?
Anil Suthar、2016年

これはMagento関連ではないので、このトピックをトピック外として閉じることに投票します。
musicliftsme 2016年

パテsshで私はmagentoの再インデックスを行っています。しかし、その表示アクセスは私が何をすべきかを否定しました
rajat

新しい質問がある場合は、[ 質問する ]ボタンをクリックして質問してください。コンテキストの提供に役立つ場合は、この質問へのリンクを含めます。- レビューから
David Verholen

回答:


31

このコマンドはROOTから実行しており、ディレクトリのindexer.php下にありshellます。代わりにこのコマンドを試してください:

php shell/indexer.php --reindex catalog_product_attribute

すべてのインデックスを再インデックスする場合:

php -f shell/indexer.php reindexall

すべてのコマンドのリスト:

php shell/indexer.php --reindex catalog_product_attribute
php shell/indexer.php --reindex catalog_product_price
php shell/indexer.php --reindex catalog_url
php shell/indexer.php --reindex catalog_product_flat
php shell/indexer.php --reindex catalog_category_flat
php shell/indexer.php --reindex catalog_category_product
php shell/indexer.php --reindex catalogsearch_fulltext
php shell/indexer.php --reindex cataloginventory_stock
php shell/indexer.php --reindex tag_summary

@sandro:これは役に立ちますか?
Anil Suthar

1
私は何年も+ 1 + 1で定期的にこの答えに戻ってきました
Bradley4

2

Magento 1には、MAGENTO_ROOT / shellフォルダーにあるインデックススクリプトindexer.phpが含まれています。このシェルスクリプトは、SSHを使用してMagentoのインデックスを再作成するために使用できます。

MagentoストアをSSHで接続し、cdコマンドを使用してMAGENTO_ROOT / shellに移動します

php indexer.php help

php indexer.php --status

php indexer.php info

php indexer.php --reindexall

2

まず、ssh / puttyを使用してログインする必要があります。"pwd"を使用してパスを確認し、magentoのルートフォルダーに移動します。次に「cd shell」、シェルに入ったら indexer.phpを含むファイルがあることを確認してください。sshを使用してそのコマンドを実行する

php indexer.php --reindex catalog_product_attribute
php indexer.php --reindex catalog_product_price
php indexer.php --reindex catalog_url
php indexer.php --reindex catalog_product_flat
php indexer.php --reindex catalog_category_flat
php indexer.php --reindex catalog_category_product
php indexer.php --reindex catalogsearch_fulltext
php indexer.php --reindex cataloginventory_stock

すべてのコマンドを実行するわけではありません。インデックス管理でmagento adminをチェックインしてください。実行すると、インデックスの再作成が表示されます。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.