o
Why at all
In its own help centre IONOS recommends letting at least five minutes pass before a cronjob runs again. The reasoning is sound: with a call every minute, runs can overlap and block the server. But anyone who genuinely needs a one-minute interval, for example for a shop's action scheduler, faces a recommendation working against them.
The second point is traceability. A scheduler at your host generally does not tell you how long your script took, what it answered, or whether that changed over the weeks. Yet that is exactly how you spot an import slowly getting out of hand, long before it stops entirely.
And if the hosting itself is not answering, the scheduler goes down with it. It sits on the same machine. A call from outside notices precisely that and sends you an email.
https://ihre-domain.de/ihr-skript.phpSetup
For backups, cleanup work and anything running at intervals of five minutes or more, the cronjob management at IONOS is the simpler route. It can start your script directly with PHP or call it by address using curl. Only read on if you need a tighter interval or a log.
For the external call you need an address reachable without a login. Protect it with a long random parameter that your script checks in its first line.
https://your-domain.com/your-script.php?key=A-LONG-SECRET
The IONOS advice is justified. If you use a one-minute interval, set a lock in your script: a file created at the start and removed at the end, or an entry in the database. If a copy is already running, the second one aborts immediately. That solves the overlap problem behind the five-minute recommendation.
Registration takes a minute and is free. For the one-minute interval you need the Plus plan; the first 14 days run on Unlimited anyway.
Enter the address and set the schedule, by clicking, as a crontab expression, or by describing the interval in one sentence.
* * * * *
Enter an email address in the folder settings. You will then also be notified when your hosting is not reachable at all.
Verification
In the Cronjob.de call log you see the time, runtime, status code and your script response for every call. If you built in a lock, the runtime should stay even and no call should end in an error.
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 IONOS
The details about IONOS come from their own documentation, as of September 2026. Please check there whether anything has changed since. IONOS is a trademark of its respective owner. This guide comes from Cronjob.de and has no business relationship with that provider.