向惡勢力低頭 Wordpress 中英對照的疑難
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

Bookmark and share: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • Technorati
  • del.icio.us
  • Slashdot
  • StumbleUpon
  • Facebook
  • Google
  • Live
  • YahooMyWeb
  • Haohao

Leave a Reply