Quote from Alex Dovlatov on February 6, 2026, 13:27
Hello Malcom
This issue maybe happens when WordPress Cron isn't executing properly or TurboMode tables get corrupted during auto-update.
Please check the following:
1. Verify WordPress Cron is working:
- Install plugin "WP Crontrol"
- Check if
woof_turbo_do_recreate_file event is scheduled and running - Check cron execution logs for any errors
2. Check for conflicts:
- Do you have any caching plugins? (WP Rocket, W3 Total Cache, etc.)
- Do you have any security plugins that might block cron?
- Is your server blocking wp-cron.php?
3. Server-side cron (recommended for production):
Instead of WordPress Cron, use real server cron:
Step 1: Disable WordPress cron in wp-config.php:
define('DISABLE_WP_CRON', true);
Step 2: Add to server crontab (daily at 3 AM):
0 3 * * * wget -q -O - https://yoursite.com/wp-cron.php?doing_wp_cron >/dev/null 2>&1
This ensures TurboMode updates reliably.
4. Debugging:
To help investigate further, please provide:
- HUSKY version
- Number of products in your shop
- Do you see any errors in: HUSKY Settings → TurboMode → Status?
- WordPress admin access (use private area)
Let me know the results!
P.S. Also, please install this plugin https://wordpress.org/plugins/error-log-monitor/ to monitor errors, maybe some PHP errors will occur when running cron.
Hello Malcom
This issue maybe happens when WordPress Cron isn't executing properly or TurboMode tables get corrupted during auto-update.
Please check the following:
1. Verify WordPress Cron is working:
- Install plugin"WP Crontrol"
- Check if
woof_turbo_do_recreate_file event is scheduled and running - Check cron execution logs for any errors
2. Check for conflicts:
- Do you have any caching plugins? (WP Rocket, W3 Total Cache, etc.)
- Do you have any security plugins that might block cron?
- Is your server blocking wp-cron.php?
3. Server-side cron (recommended for production):
Instead of WordPress Cron, use real server cron:
Step 1: Disable WordPress cron in wp-config.php:
define('DISABLE_WP_CRON', true);
Step 2: Add to server crontab (daily at 3 AM):
0 3 * * * wget -q -O - https://yoursite.com/wp-cron.php?doing_wp_cron >/dev/null 2>&1
This ensures TurboMode updates reliably.
4. Debugging:
To help investigate further, please provide:
- HUSKY version
- Number of products in your shop
- Do you see any errors in: HUSKY Settings → TurboMode → Status?
- WordPress admin access (use private area)
Let me know the results!
P.S. Also, please install this plugin https://wordpress.org/plugins/error-log-monitor/ to monitor errors, maybe some PHP errors will occur when running cron.