How to Schedule Cron Job Every Four Hours

cron

Can you tell me expression for magento cron schedule to run script every 4 hours – every day. I tried:

<schedule><cron_expr>0 */4 * * *</cron_expr></schedule>

But job is not showing in cron_schedule table

Best Answer

Try

0 0,4,8,12,16,20 * * *

Note, if you do not see the cron in the table, it's not an error, because the scheduler creates the record with some delay.

Related Topic