Apr 25
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:
-
DROP TABLE IF EXISTS ‘wp_fquick’;
-
CREATE TABLE IF NOT EXISTS `wp_fquick` (
-
`id` INT(11) NOT NULL AUTO_INCREMENT ,
-
`url` VARCHAR(255) NOT NULL ,
-
`title` VARCHAR(255) NOT NULL ,
-
`description` TEXT NOT NULL ,
-
`date` TIMESTAMP(11) NOT NULL ,
-
PRIMARY KEY (`id`)
-
) TYPE=MyISAM AUTO_INCREMENT=1 ;
Similar workarounds exist for other plugins released by FahlstadDesign
Recent Comments