@migcoe Please install WP Crontrol plugin and see the list of Cron Schedules. It should have wpo_daily schedule. Otherwise, deactivate the plugin and activate it again. Check again the cron schedules
Thread Starter
migcoe
(@migcoe)
Hi Venkat and thank you for your reply.
Unfortenly i already tried before something like your suggestions and was not working, so i tried again and:
– Deactivating the plugin dont clean it, even if i reset it (but the spam stop while is deactivated).
– there is no “wpo_daily” schedule, neither any reference to “wpo_reset_webp_conversion_test_result” job… this is the weird part!
For what i can see, any time a page is refreshed, no matter if backend or frontend, it fires that error.
Only way i managed to get rid of it is while using this action on my functions.php:
add_action(“init”, “remove_cron_job”);
function remove_cron_job() {
wp_clear_scheduled_hook(“wpo_reset_webp_conversion_test_result”);
}
@migcoe Please do a plugin conflict test. I believe either one of your plugin or theme is removing the mentioned schedule wpo_daily. It may be a mistake in the code. Would you mind sharing screenshot of available cron schedules in the WP Crontrol plugin page? Thanks
Thread Starter
migcoe
(@migcoe)
Well even with all turn off besides your plugin the problem persists.
@migcoe – did you manage to install the plugin WP Crontrol? What results did you get?
Thread Starter
migcoe
(@migcoe)
With wp control i cant see on cron Schedules, a schedule with “wpo_daily” in the name unfortenly.
On other hand the “wpo_reset_webp_conversion_test_result” hook shows at cron events with a unknow recurrence (since there is no wpo_daily). Then, when I try to edit or delete it, it shows this error: The event you are trying to edit does not exist.
the only way i managed to get this silent is really while using this code on my functions php:
add_action(“init”, “remove_cron_job”);
function remove_cron_job() {
wp_clear_scheduled_hook(“wpo_reset_webp_conversion_test_result”);
}
I had the same issue. It started after I deleted some files from my upload directory, suspecting its malicious code…:
wpo-plugins-tables-list.json
and wpo folder – if I remeber correct.
After seeing this thread, I have removed WPO and reinsttaled it + run the daily event.
Seems that everything is back to normal.
Hope it helps you too.