Boston Hosting

To create the cron job, select the script you wish to schedule for execution, and choose a start time from the drop-down list and confirm with the Set cron button.

Basic mode
Note: Since the script will be executed via the command line, you need to make sure that the interpreter is defined in the first line of the script. For example, if you wish to execute a PHP script (e.g. /home/username/www/www/myscript.php), you can do this by:

  • setting the interpreter in the first line of the script (e.g. /usr/local/bin/php.cli for the PHP-CLI version for the account, or /usr/local/bin/php74.cli for PHP 7.4), and configuring the cron job to execute that PHP script (e.g. /home/username/www/www/myscript.php)

  • creating a wrapper script (e.g. /home/username/private/cronjob.sh) that will execute the PHP script and configuring the cron job to execute the wrapper script. The wrapper script may have the following content:

    #!/bin/bash
    /usr/local/bin/php.cli /home/username/www/www/myscript.php

More information about the PHP-CLI version of the account is available in our PHP version article.

Setting up email notifications

Once you schedule a Cron Job, you can specify a mailbox, where emails with the output generated by your cron jobs will be sent. You can choose to receive emails upon each cron job execution or only when there is output.

E-mail notifications

Testing a cron job

You can check if your cron job will execute properly by using the Run button. This will execute the cron job script and will provide you with its output. This way you can verify if all the cron jobs settings are correct.

Deleting a cron job

To delete a cron job task, you can use the Delete button.

Using Advanced Mode

You can use the Advanced Mode tab for more scheduling options. After choosing the script which should be executed, you can set the exact time for this action from the drop-down lists (Hour/Minute/Day/Month/Day of week). Once the time is specified, use the Set cron button to confirm your settings.

Advanced Mode