wp_WP_SEO_Cache doesn't exist for query TRUNCATE TABLE
-
I tried deactivating and activating the plugin to get the table to auto-populate (I found the query in the code).
I fixed it on my own for now because it was spamming my logs when users were creating posts.
CREATE TABLE IF NOT EXISTS
wp_WP_SEO_Cache
(
ID
int(11) unsigned NOT NULL,
is_redirected
int(1) unsigned NOT NULL,
redirect_to
varchar(255) COLLATE utf8_unicode_ci NOT NULL,
redirect_type
int(3) unsigned NOT NULL DEFAULT 301,
PRIMARY KEY (ID
)
) ;Please make sure that your tables are rebuilt if they don’t exist on plugin activation. Thanks!
Note: When I deactivated I made sure that I allowed keeping all data upon deactivation.
I honestly don’t know how/why the table didn’t exist.
- The topic ‘wp_WP_SEO_Cache doesn't exist for query TRUNCATE TABLE’ is closed to new replies.