Aïe. Non, ça a été pire :
CITATION
CREATE TABLE IF NOT EXISTS `wp_posts` ( `ID` bigint( 20 ) unsigned NOT NULL AUTO_INCREMENT ,
`post_author` bigint( 20 ) NOT NULL default '0',
`post_date` datetime NOT NULL default '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
`post_content` longtext COLLATE latin1_general_ci NOT NULL ,
`post_title` text COLLATE latin1_general_ci NOT NULL ,
`post_category` int( 4 ) NOT NULL default '0',
`post_excerpt` text COLLATE latin1_general_ci NOT NULL ,
`post_status` enum( 'publish', 'draft', 'private', 'static', 'object', 'attachment', 'inherit', 'future' ) COLLATE latin1_general_ci NOT NULL default 'publish',
`comment_status` enum( 'open', 'closed', 'registered_only' ) COLLATE latin1_general_ci NOT NULL default 'open',
`ping_status` enum( 'open', 'closed' ) COLLATE latin1_general_ci NOT NULL default 'open',
`post_password` varchar( 20 ) COLLATE latin1_general_ci NOT NULL default '',
`post_name` varchar( 200 ) COLLATE latin1_general_ci NOT NULL default '',
`to_ping` text COLLATE latin1_general_ci NOT NULL ,
`pinged` text COLLATE latin1_general_ci NOT NULL ,
`post_modified` datetime NOT NULL default '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
`post_content_filtered` text COLLATE latin1_general_ci NOT NULL ,
`post_parent` bigint( 20 ) NOT NULL default '0',
`guid` varchar( 255 ) COLLATE latin1_general_ci NOT NULL default '',
`menu_order` int( 11 ) NOT NULL default '0',
`post_type` varchar( 20 ) COLLATE latin1_general_ci NOT NULL default 'post',
`post_mime_type` varchar( 100 ) COLLATE latin1_general_ci NOT NULL default '',
`comment_count` bigint( 20 ) NOT NULL default '0',
PRIMARY KEY ( `ID` ) ,
KEY `post_name` ( `post_name` ) ,
KEY `type_status_date` ( `post_type` , `post_status` , `post_date` , `ID` ) ) ENGINE = MYISAM DEFAULT CHARSET = latin1 COLLATE = latin1_general_ci AUTO_INCREMENT =55
Il faut dire aussi que j'ai peut-être fait 'importe quoi.
Il disait de supprimer "SET SQL_MODE=”NO_AUTO_VALUE_ON_ZERO”;
ENGINE=MyISAM DEFAULT CHARSET=latin1;"
N'ayant pas trouvé ça, j'ai juste supprimé le seul "SET SQL_MODE=”NO_AUTO_VALUE_ON_ZERO”" que j'ai trouvé.
Enfin bon, no panic, faudra juste que je vire les tables et réinstalle.