Easily Replace WP-Cron with Server-Side Cron Jobs & Toggle Debug Mode
We’ve introduced two highly requested features to make managing WordPress on RunCloud more reliable and developer-friendly, without having to manually update your wp-config.php.
Note: Both features require RunCloud Agent version 2.16.9 or later.
Easily Replace WP-Cron with a Server-Side Cron Job
WP-Cron is notoriously a source of missed schedules and unnecessary overhead. So, we’ve now made it easier than ever to replace it with a real server cron job.
What this does:
- Disables the default WordPress pseudo-cron (DISABLE_WP_CRON)
- Creates a server-level cron job that runs every 5 minutes
- Improves reliability for scheduled posts, backups, and other scheduled actions
- Reduces performance overhead from cron checks on every page load
This can be configured both when creating a new WordPress web application, as shown below:
And, in your web application settings area under WordPress > General Settings, as shown below:
Development Mode Toggle (WP Debug Made Simple)
You can now also easily enable “Development Mode” for WordPress when debugging without having to risk exposing errors to website visitors.
What this does:
- Enables/disables WordPress debug mode via UI
Automatically manages:
- WP_DEBUG
- WP_DEBUG_LOG
- WP_DEBUG_DISPLAY (disabled for safety)
- SCRIPT_DEBUG
- Logs errors to a secure debug.log file
- Keeps errors hidden from visitors by default