How to configure cron to work in Magento

Can someone please explain to me what I should do? I want Magento to clean magazines, create a sitemap every day.

Is it correct:

  • Configuring Cron on the server
  • Cron setup in Magento
  • What will happen next?

How to make steps 1 and 2? What will be step 3? Should I wait?

+4
source share
1 answer

Configuring cron on the server

Use crontab -eto edit cron jobs. To start the daily cron, add the following line:

0 3 * * *  /bin/sh /path/to/magento/cron.sh

It will work at 3 a.m. every night.

To clear the log you can check /path/to/magento/shell/log.php.

Set up cron in Magento

Magento admin : System > Configuration > Advanced > System > Cron (Scheduled Tasks) cron, .

, Magento cron, cron. , Magento , , - cron . cron , .

. Cron.

+7

All Articles