Running a Cron job daily 8 PM EST for Magento -


could please me run cron job daily 8 pm est magento in following format

<schedule><cron_expr>* * * * *</cron_expr></schedule>

if simple cron expression can refer cron documentation directly. 1 thing though think restricted local machine time zone of machine task running.

the explanation of 5 stars here:-

 field          allowed values -----          -------------- minute         0-59 hour           0-23 day of month   1-31 month          1-12 (or names, see below) day of week    0-7 (0 or 7 sunday, or use names) 

so daily 8 p.m.

0 20 * * *

reference: http://man7.org/linux/man-pages/man5/crontab.5.html


Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -