table Table name. * * @return string The full name of the table, including the * table prefix for the current blog */ protected function get_full_table_name( $table ) { return $GLOBALS['wpdb']->prefix . $table; } /** * Confirms that all of the tables registered by this schema class have been created. * * @return bool */ public function tables_exist() { global $wpdb; $tables_exist = true; foreach ( $this->tables as $table_name ) { $table_name = $wpdb->prefix . $table_name; $pattern = str_replace( '_', '\\_', $table_name ); $existing_table = $wpdb->get_var( $wpdb->prepare( 'SHOW TABLES LIKE %s', $pattern ) ); if ( $existing_table !== $table_name ) { $tables_exist = false; break; } } return $tables_exist; } }
Fatal error: Uncaught Error: Class "ActionScheduler_Abstract_Schema" not found in /htdocs/le-blog.fr/wp-content/plugins/seo-by-rank-math/vendor/woocommerce/action-scheduler/classes/schema/ActionScheduler_StoreSchema.php:10 Stack trace: #0 /htdocs/le-blog.fr/wp-content/plugins/seo-by-rank-math/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler.php(164): include() #1 /htdocs/le-blog.fr/wp-content/plugins/seo-by-rank-math/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php(53): ActionScheduler::autoload('ActionScheduler...') #2 /htdocs/le-blog.fr/wp-includes/class-wp-hook.php(339): ActionScheduler_DBStore->init() #3 /htdocs/le-blog.fr/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters(NULL, Array) #4 /htdocs/le-blog.fr/wp-includes/plugin.php(522): WP_Hook->do_action(Array) #5 /htdocs/le-blog.fr/wp-settings.php(742): do_action('init') #6 /htdocs/le-blog.fr/wp-config.php(102): require_once('/htdocs/le-blog...') #7 /htdocs/le-blog.fr/wp-load.php(50): require_once('/htdocs/le-blog...') #8 /htdocs/le-blog.fr/wp-blog-header.php(13): require_once('/htdocs/le-blog...') #9 /htdocs/le-blog.fr/index.php(17): require('/htdocs/le-blog...') #10 {main} thrown in /htdocs/le-blog.fr/wp-content/plugins/seo-by-rank-math/vendor/woocommerce/action-scheduler/classes/schema/ActionScheduler_StoreSchema.php on line 10