Use php to set cron jobs in Windows

I found my answer to that question at waytocode.com They provide 3 possible solutions to run cron jobs on Windows: Solution-1 using Task scheduler In your Windows 7/windows 2005/2008. Go to Startmenu->All Programs->Accessories->System Tools->Task Scheduler->create Task In the new window: General (Give the Task name and for testing you can select “Run when User is … Read more

AWS Elastic Beanstalk, running a cronjob

This is how I added a cron job to Elastic Beanstalk: Create a folder at the root of your application called .ebextensions if it doesn’t exist already. Then create a config file inside the .ebextensions folder. I’ll use example.config for illustration purposes. Then add this to example.config container_commands: 01_some_cron_job: command: “cat .ebextensions/some_cron_job.txt > /etc/cron.d/some_cron_job && … Read more

How do I schedule jobs in Jenkins?

By setting the schedule period to 15 13 * * * you tell Jenkins to schedule the build every day of every month of every year at the 15th minute of the 13th hour of the day. Jenkins used a cron expression, and the different fields are: MINUTES Minutes in one hour (0-59) HOURS Hours … Read more