Advanced: Task Scheduling

Scheduling tasks is also possible, both from your web server using a scheduler like cron directly, or from the UI.

Scheduling from the Command Line

Much like jobs, tasks can be scheduled using cron on the command line. If you want to run the “Reindex Content” for pages every Friday at midnight, for example, you’d add this entry to your crontab on your web server:

0 0 * * FRI concrete/bin/concrete task:reindex-content pages

Scheduling through the User Interface

You may also schedule tasks directly through the user interface. This requires the same knowledge of cron scheduling syntax, but you don’t have to have server access every time you want to modify the schedule or add/remove schedule entries. **You will need server access the first time, in order to add a single main scheduling entry.**

Enable Task Scheduling

First, you’ll have to enable task scheduling from the Dashboard. On the Dashboard > System & Settings > Automation > Automation Settings, enable the “Scheduler”:

concrete_cms_scheduler_cron_tab_syntax.pngNote the warning here: in order for task scheduling to work, you must add this entry to your server’s crontab and ensure that it is running properly. The `concrete:scheduler:run` command runs every minute, and makes sure to kick off any tasks that have been scheduled through the user interface. This command is actually responsible for starting scheduled tasks, which is why it’s so important.

cPanel configuration

For cPanel based hosting the crontab command normally requires the PHP executable to be specified. The command will typically look like this:

/usr/local/bin/php -q /home/accountpath/public_html/concrete/bin/concrete concrete:scheduler:run >> /dev/null 2>&1

The same approach may be required on other servers.

Starting a Scheduled Task

Starting a scheduled task is the same as starting a regular task – scheduling just adds an additional field to the task runner interface:

Task scheduling 2Just add the cron expression that corresponds with when you’d like to have the task run, and it will be scheduled for that time.

Task Scheduling 3