Go to your server on the control panel.
Click on "Schedules" on the top bar
Press "Create Schedule".
The schedule uses CRON. It might look a bit scary at first glance but it is easy to use.
For example, if we want to create a backup at 3pm every day, we would use:
Minute: 0 - This is because we want to run the job on the 0th minute.
Hour: 15 - As we want to run the job on the 15th hour of the day
Day: * - As we want to run it everyday
Month: * - As we want to run this everymonth
If you want to run a backup every half day, then it would look like
Minute: 0
Hour: */12
Day: *
Month: *
Once you have created your schedule, you need to add a task by clicking onto the schedule you have just created.
From there, click new task and follow the instructions on screen.
If you have any issues setting this up, please create a support ticket and we'll get this sorted for you.