php - Magento how to configure cron -
i have configured custom cron in 1 of modules, want executed every 1 week, @ 11:00 am, i've wrote in config.xml
<cron_expr>0 0 * * 1</cron_expr>
this execute function every 1 week @ midnight, or @ least understand, don't know how write expresion execute @ 11:00 am, don't know means * * * * *, in magento's wiki everytime cron execute.
how can make cron execute every 1 week @ 11:00 am
thanks
you need configure hour item (the second item):
<cron_expr>0 11 * * 1</cron_expr>
Comments
Post a Comment