Hi @malinky,
Thanks for the logs, on checking further the issue is due to the missing actionscheduler_actions table.
WordPress database error Table 'xxx.wp_actionscheduler_actions' doesn't exist for query SELECT
You can find similar error when plugins like WP Forms, WP Mail SMTP, and Forminator is trying to use the mentioned table in the logs.
This is the logs which gets rigged when Forminator is enabled
PHP Fatal error: Uncaught RuntimeException: Error saving action: Error saving action: Table 'xxx.wp_actionscheduler_actions' doesn't exist in /xxx/public/wp-content/plugins/x-forminator/library/external/src/Forminator/woocommerce/action-scheduler/classes/migration/ActionScheduler_DBStoreMigrator.php:44
The above fatal error indicates that there’s an issue with the Action Scheduler library, which is an external library used by the Forminator plugin. The error is being triggered while trying to save a recurring action in your WordPress database.
Specifically, it’s attempting to save data to a particular table in the database (wp_actionscheduler_actions
), but it can’t do so because that table doesn’t exist. This would cause the ActionScheduler_DBStoreMigrator->save_action()
method to fail, hence the error.
You’re seeing the error message?Table 'xxx.wp_actionscheduler_actions' doesn't exist
?because the table it’s trying to write to isn’t in your WordPress database.
You can check and see the steps mentioned in here helps:
https://fullworksplugins.com/docs/display-eventbrite-events-in-wordpress/troubleshooting/handling-action-scheduler-fatal-error/
The above steps would be the same for any plugins. Please do check and see how that goes.
I could also notice the folder name for “fromintator” is /wp-content/plugins/x-forminator/ please do make sure to change that back from /x-forminator to /forminator.
Best Regards,
Nithin