0

I need to re-index all products in Magento every night.

I know this can be achieved with: php /home/path/to/magento/shell/indexer.php reindexall

But how do I add this call into the built-in cron mechanism in Magento?

4

1 回答 1

1
  1. 第 1 步:将 cron 设置为每 5 分钟或更高频率执行一次。

  2. 在 crontab 节点中:0 2 * * * 目录/product_indexer_price::reindexAll

您根据您的日值更改 cron_expr 中的 2 。

于 2013-03-12T04:36:17.017 回答