Title: Cron Guard
Author: chillichalli
Published: <strong>June 2, 2026</strong>
Last modified: June 2, 2026

---

Search plugins

![](https://ps.w.org/cron-guard/assets/banner-772x250.png?rev=3557349)

![](https://ps.w.org/cron-guard/assets/icon-256x256.png?rev=3557349)

# Cron Guard

 By [chillichalli](https://profiles.wordpress.org/chillichalli/)

[Download](https://downloads.wordpress.org/plugin/cron-guard.1.0.6.zip)

 * [Details](https://wordpress.org/plugins/cron-guard/#description)
 * [Reviews](https://wordpress.org/plugins/cron-guard/#reviews)
 *  [Installation](https://wordpress.org/plugins/cron-guard/#installation)
 * [Development](https://wordpress.org/plugins/cron-guard/#developers)

 [Support](https://wordpress.org/support/plugin/cron-guard/)

## Description

Cron Guard is a comprehensive monitoring solution for WordPress cron jobs. It helps
you detect when cron jobs are failing, identify stalled or missed scheduled tasks,
and provides host-specific instructions to fix common issues.

#### Features

 * **Health Monitoring** – Detect if WP Cron has executed within a configurable 
   time threshold
 * **Scheduled Events List** – View all scheduled cron hooks with last run time,
   next run time, and interval
 * **Overdue Detection** – Flag overdue or stalled hooks with clear visual indicators
 * **Rolling Log** – Lightweight logging of cron execution events
 * **Admin Dashboard** – Clear, non-technical UI showing overall health status and
   detailed hook information
 * **Fix Assistant** – Host-specific instructions for setting up real cron jobs
 * **Admin Bar Indicator** – Quick status indicator in the WordPress admin bar

#### Premium Features

 * **Email Alerts** – Receive notifications when cron is stalled or repeatedly missing
   schedules
 * **Webhook Alerts** – Send alerts to any webhook endpoint
 * **Slack Integration** – Formatted Slack notifications with action buttons
 * **Discord Integration** – Formatted Discord notifications with embeds
 * **Verification System** – Test and confirm real cron execution
 * **Advanced Diagnostics** – Deep system analysis and troubleshooting

#### Why You Need This

WordPress relies on WP-Cron for critical tasks like:

 * Publishing scheduled posts
 * Sending emails
 * Running backups
 * Processing orders (WooCommerce)
 * Updating plugins and themes

When WP-Cron fails silently, these tasks stop working. Cron Guard gives you visibility
into your cron health and alerts you before problems become critical.

#### Supported Hosts

The Fix Assistant provides specific setup instructions for:

 * WP Engine
 * Kinsta
 * SiteGround
 * Bluehost
 * GoDaddy
 * DreamHost
 * Cloudways
 * Flywheel
 * Pantheon
 * Pressable
 * cPanel hosts
 * Plesk hosts
 * Generic VPS/Dedicated servers

### External Services

This plugin optionally connects to the following third-party services when configured
by the user:

#### Slack API

When Slack alerts are enabled, the plugin sends notification messages to a user-
configured Slack Incoming Webhook URL. Data sent includes: site name, site URL, 
cron health status, and alert details. No personal data is transmitted. Slack is
operated by Salesforce, Inc.

 * [Slack API documentation](https://api.slack.com/messaging/webhooks)
 * [Slack Privacy Policy](https://slack.com/trust/privacy/privacy-policy)

#### Discord API

When Discord alerts are enabled, the plugin sends notification messages to a user-
configured Discord Webhook URL. Data sent includes: site name, site URL, cron health
status, and alert details. No personal data is transmitted.

 * [Discord Developer documentation](https://discord.com/developers/docs/resources/webhook)
 * [Discord Privacy Policy](https://discord.com/privacy)

#### Generic Webhooks

When webhook alerts are enabled, the plugin sends a JSON POST request to any user-
configured URL. Data sent includes: site name, site URL, cron health status, and
alert details. The webhook URL is entirely user-controlled.

#### Freemius SDK

This plugin uses the Freemius SDK for optional usage analytics and future licensing.
No data is collected unless the user opts in during activation. Freemius is operated
by Freemius, Inc.

 * [Freemius Privacy Policy](https://freemius.com/privacy/)
 * [Freemius Terms of Service](https://freemius.com/terms/)

#### External Cron Services (Referenced Only)

The Fix Assistant page references third-party cron services (EasyCron, cron-job.
org, UptimeRobot) as alternatives for setting up server-side cron. The plugin does
not connect to or transmit data to these services. Users who choose to use these
services do so independently.

## Screenshots

 * [[
 * Dashboard – Overall cron health status and quick stats
 * [[
 * Scheduled Events – Complete list of all cron events with status indicators
 * [[
 * Fix Assistant – Host-specific setup instructions
 * [[
 * Logs – Filterable log viewer with event details
 * [[
 * Settings – Configuration options and premium features

## Installation

 1. Upload the `cron-guard` folder to the `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Navigate to **Cron Guard** in the admin menu to view your cron health

#### Setting Up Real Cron (Recommended)

For best reliability, disable WordPress’s built-in cron and use a real server cron
job:

 1. Add to your `wp-config.php`:
 2. define(‘DISABLE_WP_CRON’, true);
 3. Set up a server cron job (every 5 minutes recommended):
 4. */5 * * * * wget -q -O /dev/null “https://yoursite.com/wp-cron.php” >/dev/null 
    2>&1

The **Fix Assistant** page provides detailed, host-specific instructions for your
hosting environment.

## FAQ

### What is WP-Cron?

WP-Cron is WordPress’s built-in task scheduler. Unlike a real server cron, WP-Cron
only runs when someone visits your site. This means on low-traffic sites, scheduled
tasks may be delayed or missed entirely.

### Why are my cron jobs not running?

Common causes include:

 * Low site traffic (WP-Cron needs page visits to trigger)
 * DISABLE_WP_CRON is set but no real cron is configured
 * Hosting blocking loopback requests
 * Server resource limits
 * Plugin conflicts
 * SSL certificate issues

Use the Fix Assistant to diagnose your specific issue.

### How do I set up a real cron job?

The Fix Assistant provides step-by-step instructions for your specific hosting provider.
Generally, you need to:

 1. Add `define('DISABLE_WP_CRON', true);` to wp-config.php
 2. Set up a server cron job to hit wp-cron.php every 5 minutes

### What’s the difference between Warning and Critical status?

 * **Warning** – Cron hasn’t run within your configured threshold (default: 15 minutes)
 * **Critical** – Cron hasn’t run for more than double your threshold (default: 
   30 minutes)

### Can I use external cron services?

Yes! If your host doesn’t support real cron, you can use external services like:

 * EasyCron
 * cron-job.org
 * UptimeRobot

The Fix Assistant includes setup instructions for these services.

### Does this plugin slow down my site?

No. Cron Guard is designed to be lightweight:

 * Logs are stored in WordPress options (no custom database tables)
 * Rolling log with maximum 500 entries
 * Automatic cleanup of old logs
 * Cron profiling only runs during cron execution

### How is this different from WP Crontrol?

They solve different problems and work well side by side. WP Crontrol is a cron 
_management_ tool for editing, adding, deleting, pausing, and manually running individual
cron events. Cron Guard is a cron _monitoring and alerting_ tool that watches your
cron health and tells you the moment something breaks.

Cron Guard focuses on things WP Crontrol does not do:

 * Proactive alerts (email, webhook, Slack, Discord) when cron stalls or repeatedly
   misses its schedule
 * A historical rolling log of cron execution events
 * A plain-language health dashboard with Warning/Critical status, built for site
   owners and agency clients rather than developers
 * An in-dashboard Fix Assistant with host-specific instructions for setting up 
   real cron
 * Verification that real server cron is actually executing

If you need to hand-edit, pause, or create individual cron events, WP Crontrol is
the right tool. If you need to know when cron fails and how to fix it, that’s Cron
Guard. Many sites happily run both.

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“Cron Guard” is open source software. The following people have contributed to this
plugin.

Contributors

 *   [ chillichalli ](https://profiles.wordpress.org/chillichalli/)

[Translate “Cron Guard” into your language.](https://translate.wordpress.org/projects/wp-plugins/cron-guard)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/cron-guard/), check
out the [SVN repository](https://plugins.svn.wordpress.org/cron-guard/), or subscribe
to the [development log](https://plugins.trac.wordpress.org/log/cron-guard/) by 
[RSS](https://plugins.trac.wordpress.org/log/cron-guard/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.0.6

 * Confirmed compatible with WordPress 7.0 (tested on WP 7.0 / PHP 8.2).
 * Timezone clarity: every displayed time now shows the site’s timezone, with an“
   All times shown in …” note on the Dashboard, Scheduled Events, and Logs screens.
 * Times are now formatted with `wp_date()` for correct, DST-aware display of named
   timezones; alert emails and Slack/Discord notifications now include the timezone
   too.
 * Added a “How is this different from WP Crontrol?” FAQ entry.

#### 1.0.5

 * WordPress.org compliance: restructure premium-only code so the Freemius deploy
   script physically strips it from the free build (suffixed `__premium_only` methods
   and `__premium_only.php` files).
 * Free build no longer contains the license/plan class, the premium settings UI,
   the verification flow, or the alert/webhook/Slack/Discord implementations.
 * Removed the upgrade CTA from the Settings page.
 * Bumped Freemius SDK to 2.13.1.

#### 1.0.0

 * Initial release
 * Core health monitoring functionality
 * Admin dashboard with status indicators
 * Scheduled events list with performance metrics
 * Rolling event log with filtering
 * Fix Assistant with host-specific instructions
 * Email alerts (Premium)
 * Webhook alerts (Premium)
 * Slack integration (Premium)
 * Discord integration (Premium)
 * Verification system (Premium)

## Meta

 *  Version **1.0.6**
 *  Last updated **4 hours ago**
 *  Active installations **Fewer than 10**
 *  WordPress version ** 5.0 or higher **
 *  Tested up to **7.0**
 *  PHP version ** 7.4 or higher **
 * Tags
 * [cron](https://wordpress.org/plugins/tags/cron/)[cron jobs](https://wordpress.org/plugins/tags/cron-jobs/)
   [monitoring](https://wordpress.org/plugins/tags/monitoring/)[scheduled tasks](https://wordpress.org/plugins/tags/scheduled-tasks/)
   [wp cron](https://wordpress.org/plugins/tags/wp-cron/)
 *  [Advanced View](https://wordpress.org/plugins/cron-guard/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/cron-guard/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/cron-guard/reviews/)

## Contributors

 *   [ chillichalli ](https://profiles.wordpress.org/chillichalli/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/cron-guard/)