↧
Answer by Mark Kaplun for what effective ways are there to debug cron
While @Wyck's and @vlood's answers are good for many scenarios, I ended up with another way to isolate where the problem might be by just directly surfing to example.com/wp-cron.php which in my case...
View ArticleAnswer by vlood for what effective ways are there to debug cron
A pretty elegant way to go with this is to install Debug bar plugin, which is a great tool for developers + it's addon Debug bar cron.
View ArticleAnswer by Wyck for what effective ways are there to debug cron
I would create a simple plugin that spits the data out into a private admin page, you basically want to use: $cron = _get_cron_array(); $schedules = wp_get_schedules(); $tranny =...
View Articlewhat effective ways are there to debug cron
Right now about 25% of the entries in my access log (which do not show resource like css, images, etc) are requests to wp-cron.php. I assume there is some process event that got "stuck" and keep...
View Article