o
Why at all
According to STRATO's own guide, their cron management offers the intervals once, daily, weekly or monthly. An hourly or minute-precise call is not provided for, regardless of how large your package is.
Two further restrictions come from the same source: cron jobs only exist from the Hosting Plus package upwards, with older types from PowerWeb Plus, Perfect or PowerPlus L. And on STRATO's new platform the function is, by their own account, not yet available at all. A cron job also runs for at most 15 minutes.
For a site that triggers a backup once a day that is enough. But as soon as a shop has to advance orders, WordPress has to publish scheduled posts or Nextcloud has to do its background work, daily is too rare. Those systems expect a call every few minutes.
https://ihre-domain.de/ihr-skript.phpSetup
Sign in to the STRATO customer centre and open Verwaltung › Cron-Jobs. If the entry is missing, your package has no cron jobs. If it is there, you will see the available times when creating a job. If daily is enough for you, set it up there and you are done.
For the external route you need an address that starts your script. In most systems that is a fixed file, such as wp-cron.php for WordPress or cron.php for Nextcloud. For your own scripts, create a file that does the work.
https://your-domain.com/your-script.php
The address has to be reachable from outside. So that not just anyone can trigger it, append a long random parameter and check it in the first line of your script.
https://your-domain.com/your-script.php?key=A-LONG-SECRET
A status 200 response without a login is correct. Remember that a script under STRATO is aborted after 15 minutes if you run it there. A call from outside does not know that limit, but it does have our own runtime limit.
Registration takes a minute and is free. Three cronjobs stay free forever, the first 14 days run on the Unlimited plan.
Enter the address and set the schedule. If you would rather not deal with crontab syntax, describe the interval in one sentence and have it suggested to you.
*/5 * * * *
Verification
In the Cronjob.de call log you will see the first calls with status 200 and their runtime within a few minutes. For the first test have your script write date and time into a file, then you can see on both sides that it arrived.
FAQ
Create an account, enter the address, click the schedule. Three cronjobs are free forever, the first 14 days run on the Unlimited plan.
Start for free See pricingMore guides
Official documentation of STRATO
The details about STRATO come from their own documentation, as of September 2026. Please check there whether anything has changed since. STRATO is a trademark of its respective owner. This guide comes from Cronjob.de and has no business relationship with that provider.