Shared Hosting for Everyone, imagined by developers, for developers.
Discovering the Public CloudVia the Advanced > Scheduled tasks menu in your administration interface, enter the commands that you wish to run, the URL that you wish to access at regular intervals and define the task repeat periods.
Important:
$HOME/admin/logs/jobs/
directory. It gives you the start and end of the task.Even if it is not advisable, users of dedicated and VPS servers have also access to the crontab -e
command. The two systems are separate.
Every ten minutes, the WordPress tool starts to run the scheduled tasks:
alwaysdata administration interface:
php $HOME/wordpress/htdocs/wp cron event run --due-now
Equivalent crontab syntax:
*/10 * * * * php $HOME/wordpress/htdocs/wp cron event run --due-now
Refreshing an RSS backend with TT-rss, every day at 10:30:
alwaysdata administration interface:
php $HOME/tt-rss/update.php --feeds --quiet
Equivalent crontab syntax:
30 10 * * * php $HOME/tt-rss/update.php --feeds --quiet
source venv/bin/activate && python
is specific to Bash and can’t function. To replace per venv/bin/python
.Shortcuts with an @ - examples @hourly or @reboot - are not accepted (non-standard syntax).