What cron jobs if any do I need to setup for OpenMage v19? #3193
Answered
by
addison74
djixas
asked this question in
Questions & Answers
-
I couldn't find any info. |
Beta Was this translation helpful? Give feedback.
Answered by
addison74
Apr 18, 2023
Replies: 1 comment
-
You must read the Magento 1 user manual. If you use DDEV @sreichel has already created a README file which contains a tutorial for cron jobs. If you use Linux then you must add a line for a user in the cron table. For example
Once the editor opens add this line */3 * * * * /bin/sh /home/<user_name>/public_html/cron.sh Restart cron service
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
elidrissidev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You must read the Magento 1 user manual. If you use DDEV @sreichel has already created a README file which contains a tutorial for cron jobs. If you use Linux then you must add a line for a user in the cron table. For example
crontab -u <user_name> -e
Once the editor opens add this line
*/3 * * * * /bin/sh /home/<user_name>/public_html/cron.sh
Restart cron service
systemctl restart cron.service