Delete thousands of cron jobs

Thanks Privateer for the prompt reply and advice. I found a way around it before I saw your answer. Here is a step-by-step method for deleting thousands of old cron jobs and may be of use to someone else. I logged on to phpMyAdmin. I clicked on my database and then the ‘search’ tab. I … Read more

How to debug WordPress “Cron” wp_schedule_event

You can run WP cron manually by calling: http://example.com/wp-cron.php?doing_wp_cron If you don’t want the automatic cron to run while you’re debugging, then add this to your /wp-config.php file: define(‘DISABLE_WP_CRON’, true); If you’re on a development environment and want to output debug information, calling it manually like that will show you your debug output. Alternatively you … Read more