From c34f16e1cbab1954bc6814989cd0c0e7db7fdee5 Mon Sep 17 00:00:00 2001 From: Leo Fajardo Date: Sun, 11 Jan 2026 12:41:18 +0800 Subject: [PATCH] [debug] [cron] Enrich the debug page with the default WP-Cron status. --- start.php | 2 +- templates/debug.php | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/start.php b/start.php index 976db305..d07d287e 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.13.0.3'; + $this_sdk_version = '2.13.0.4'; #region SDK Selection Logic -------------------------------------------------------------------- diff --git a/templates/debug.php b/templates/debug.php index f620bfd5..7ef8afa0 100644 --- a/templates/debug.php +++ b/templates/debug.php @@ -257,6 +257,10 @@ function stopCountdownManually() { 'key' => 'WP_FS__DIR', 'val' => WP_FS__DIR, ), + array( + 'key' => 'DISABLE_WP_CRON', + 'val' => defined( 'DISABLE_WP_CRON' ) ? ( DISABLE_WP_CRON ? 'true' : 'false' ) : 'Not defined', + ), array( 'key' => 'wp_using_ext_object_cache()', 'val' => wp_using_ext_object_cache() ? 'true' : 'false', @@ -282,7 +286,11 @@ function stopCountdownManually() { echo ' class="alternate"'; } ?>> - + Freemius SDK’s sync cron jobs will not run unless an alternative server-side cron is set up.

'; + } + ?>