I fixed it for myself, it’s a bit technical and I don’t know if it will work for everyone but this worked for me:
Login to PHPMyadmin and look at the tables in your database.
If you’re lucky the data is still in ‘wpsm_tables’, they removed the table when I first deactivated and activated it but I was lucky enough to save the data before this happened.
If the table is still there rename it to ‘wp_wpsm_tables’, or if you use another prefix instead of wp_ use that.
If the table ‘wpsm_tables’ in’t there, use this to create a new table (change the prefix as needed):
CREATE TABLE wp_wpsm_tables (
id MEDIUMINT(9) NOT NULL AUTO_INCREMENT,
name TINYTEXT NOT NULL,
rows MEDIUMINT(9) NOT NULL,
cols MEDIUMINT(9) NOT NULL,
subs TINYTEXT NOT NULL,
color TINYTEXT NOT NULL,
responsive tinyint(1) NOT NULL DEFAULT ‘0’,
tvalues LONGTEXT NOT NULL,
UNIQUE KEY id (id)
);
-
This reply was modified 6 years, 8 months ago by ikwilkoffie.