Forum Replies Created

Viewing 1 replies (of 1 total)
  • 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.

Viewing 1 replies (of 1 total)