V2.1.1 Crashes Website (4 Database Tables Added)
-
Help appreciated!
Issue:
The latest update (V2.1.1) of your plugin added four (4) database tables to our website. They are:
wp_actionscheduler_actions wp_actionscheduler_claims wp_actionscheduler_groups wp_actionscheduler_groups
Apparently, above tables were added in support of Woocommerce. Well, we don’t use Woocommerce, so we deleted above tables and our site crashed as soon as the embedded cron: “actionscheduler” ran. By the way, the cron runs every minute. What?
So, thank goodness for back-ups, we restored the databases and our site runs OK. We also added the filter provided below in our functions.php file to force the cron to run every 24 hours.
add_filter('action_scheduler_run_schedule', function($arg) { return 86400; });
Bottom line:
(1) Please provide a fix that will allow us to delete the above tables while keeping our website from crashing.
(2) Please provide a fix that will delete the “1-minute” cron. Note: Please ensure the fix supports both WP-Cron and Real Cron.
Thank you!
- The topic ‘V2.1.1 Crashes Website (4 Database Tables Added)’ is closed to new replies.