Magento – How to i set auto cache and reindex using cron

cachecronmagento-1.9reindex

I need to set magento all cache and magento reindex automatically, how can i done by using cron.

Best Answer

for reindexing you can use below cron

0 0 * * * php -f /path_to_your_magento/shell/indexer.php reindex

for caching you can add below cron

0 0 * * * rm -rf /path_to_your_magento/var/cache/*
Related Topic