Apr 24

Upon activating the fQuick plugin and trying to set the options, the user may encounter a database error in the fQuick’s option page. The solution is to run the following SQL code in your database:

  1. DROP TABLE IF EXISTS ‘wp_fquick’;
  2. CREATE TABLE IF NOT EXISTS `wp_fquick` (
  3.             `id` INT(11) NOT NULL AUTO_INCREMENT ,
  4.             `url` VARCHAR(255) NOT NULL ,
  5.             `title` VARCHAR(255) NOT NULL ,
  6.             `description` TEXT NOT NULL ,
  7.             `date` TIMESTAMP(11) NOT NULL ,
  8.             PRIMARY KEY (`id`)
  9. ) TYPE=MyISAM AUTO_INCREMENT=1 ;

Similar workarounds exist for other plugins released by FahlstadDesign