rogeredwardsmindspringcom
Member
Posted 2 years ago #
I just installed and activated the Quote Rotator plugin. When I tried to enter a quote I encountered the error
"WordPress database error: [Table 'tendreln_wrdp2.wp_QuoteRotator' doesn't exist]".
I think the plugin is designed to add the table itself. My host is Blue Host.
Anyone have any ideas what I can do to correct this?
Thanks,
-Roger
I had the same issue but poking through the table creation code I put together this and now it works fine on my wordpress install.
Sign into mysql and 'use' your database then type in.
CREATE TABLE wp_QuoteRotator(
id MEDIUMINT(9) NOT NULL AUTO_INCREMENT PRIMARY KEY,
quote TEXT NULL,author VARCHAR(255) NOT NULL);
That will manually create the table.
I had the same error message. I typed the code you gave. Now it's not showing anything.
I activated and deactivated. unistall and install again. change the theme. added test quates. Still doesn't work. the blog url is blog
can anyone help me?
snumb130
Member
Posted 1 year ago #
That is the only solution that I know. I will look into why it is not creating the table. Sorry for the delayed response. But I can't see why you could not create the table manually.