Conversation
supportHi keep getting this message ?????? There was a problem spawning a call to the WP-Cron system on your site. This means WP-Cron events on your site may not work. The problem was: The DISABLE_WP_CRON constant is set to true. WP-Cron spawning is disabled. https://wordpress.org/plugins/wp-cron-control/
Getting the same error 🙁
This only means you have the following line of code in your wp-config.file: define(‘DISABLE_WP_CRON’, true); Now this doesn’t disable your Cron functionality, it only stops triggering it upon every page load. What you need to do is setup a Cronjob in cPanel/Plesk or any other provided server management tool. If your hosting provider doesn’t allow cronjobs, you can use this to trigger your crons: https://www.easycron.com/user/register The free plan would get you pretty far imo. Just call the file like http(s)://(www.)yourdomain.com/wp-cron.php Put the s only if your site uses SSL and the www. only if you use that subdomain. Subsitute if necessary. Hope that helps.
Getting the same error 🙁
This only means you have the following line of code in your wp-config.file: define(‘DISABLE_WP_CRON’, true); Now this doesn’t disable your Cron functionality, it only stops triggering it upon every page load. What you need to do is setup a Cronjob in cPanel/Plesk or any other provided server management tool. If your hosting provider doesn’t allow cronjobs, you can use this to trigger your crons: https://www.easycron.com/user/register The free plan would get you pretty far imo. Just call the file like http(s)://(www.)yourdomain.com/wp-cron.php Put the s only if your site uses SSL and the www. only if you use that subdomain. Subsitute if necessary. Hope that helps.