I had similar errors,in Windows2003 IIS+PHP+Mysql, first install.
I IGNORE those warnings and go through Steps 1 and 2 of the install process,install ok,login,go options,set and update,it’s work^_^
and see this:
CREATE TABLE IF NOT EXISTS <strong>DB_NAME</strong>_options
(
option_id
bigint(20) NOT NULL auto_increment,
blog_id
int(11) NOT NULL default ‘0’,
option_name
varchar(64) NOT NULL default ”,
option_can_override
enum(‘Y’,’N’) NOT NULL default ‘Y’,
option_type
int(11) NOT NULL default ‘1’,
option_value
longtext NOT NULL,
option_width
int(11) NOT NULL default ’20’,
option_height
int(11) NOT NULL default ‘8’,
option_description
tinytext NOT NULL,
option_admin_level
int(11) NOT NULL default ‘1’,
autoload
enum(‘yes’,’no’) NOT NULL default ‘yes’,
PRIMARY KEY (option_id
,blog_id
,option_name
),
KEY option_name
(option_name
)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=70 ;
Hope that helps