o
Cronjob.de › Guides › WooCommerce
When orders get stuck in "Processing", confirmation emails never arrive or subscriptions are not renewed, it is almost always the same cause: the Action Scheduler never gets its turn. This guide gives it a fixed interval.
Why at all
WooCommerce handles almost everything after the purchase through the Action Scheduler: advancing order status, restoring stock, sending mail, renewing subscriptions, generating reports and exports. But the Action Scheduler has no clock of its own. It rides on WP-Cron – and WP-Cron only starts when somebody opens your shop.
In a low-traffic shop this produces the classic complaint: an order arrives at three in the morning, the confirmation email goes out at nine when the first visitor opens the site. With subscriptions it is worse – a renewal nobody triggers leads to a failed payment.
On top of that the Action Scheduler only processes a limited batch per run. Once a backlog builds up it takes many runs to clear it – and each of those runs needs another visitor. A fixed interval from outside breaks that cycle.
https://ihr-shop.de/wp-cron.phpSetup
The AI does it faster
You do not have to transfer any of this by hand. Paste this guide – or the one for your own system – into the assistant, and Cronjob.de fills in address, method, schedule and headers. Where something is unclear it asks instead of guessing. At the end you see what was entered and create the job with one click.
Included in the free plan at no extra cost. You will find it after signing in under "Cronjobs" → "Create with AI".
Add the following line to wp-config.php above the line saying "That’s all, stop editing". WordPress then no longer checks on every page view – which saves noticeable processing time on a shop.
define( 'DISABLE_WP_CRON', true );
Open WooCommerce › Status › Scheduled Actions. "Pending" shows how many tasks are waiting. In a healthy shop that is a handful. If there are thousands, you have found the reason for the stuck orders.
Open https://your-shop.com/wp-cron.php in a browser once. A blank white page is correct. An error usually means a security plugin such as Wordfence or a rule in .htaccess is blocking it.
Registration takes a minute and is free. The first 14 days run on the Unlimited plan – so the call log shows you immediately whether the backlog is shrinking.
Enter the address and select every minute. More often achieves nothing: WordPress sets a lock on start that holds for 60 seconds by default.
* * * * *
You can enter this expression at Cronjob.de exactly as it is – the schedule field understands crontab notation. But you do not have to know it: simply click the schedule together instead.
Enter an email address under notifications. For a shop this is the most important step: a stalled Action Scheduler costs orders, and otherwise you only find out from the customer.
What the five fields of an expression like */5 * * * * mean is explained in the crontab reference – with examples and the most common pitfalls. You can build the expression in the crontab generator.
Verification
The check is in WooCommerce › Status › Scheduled Actions: the "Pending" number has to fall, and "Complete" has to show fresh timestamps a minute apart. The Cronjob.de call log shows the same minutes with status 200 and the runtime.
FAQ
wp-cron.php is not cached by the usual caches. Just make sure a security plugin or firewall is not blocking the file – that is the most common cause of error 403.wp-cron.php there, otherwise everything piles up during maintenance.Cronjob.de
in the user agent. Ask your host for an exception for it; that is more reliable than allowing IP addresses, because ours can change. Addresses and details in the FAQ.
Create an account, enter the address, click the schedule. Five cronjobs are free forever, the first 14 days run on the Unlimited plan.
Start for free See pricingMore guides
Official documentation of WooCommerce
The details about WooCommerce come from their own documentation, as of September 2026. Please check there whether anything has changed since. WooCommerce is a trademark of its respective owner. This guide comes from Cronjob.de and has no business relationship with that provider.