@CARS
Why would you install brand new osclass on MySQL 5.5? Does not make sense at all.
You have to go to file:
oc-includes/osclass/installer/struct.sql
Find this section:
CREATE TABLE /*TABLE_PREFIX*/t_item_description (
fk_i_item_id INT(10) UNSIGNED NOT NULL,
fk_c_locale_code CHAR(5) NOT NULL,
s_title VARCHAR(100) NOT NULL,
s_description MEDIUMTEXT NOT NULL,
PRIMARY KEY (fk_i_item_id, fk_c_locale_code),
FULLTEXT s_description (s_description, s_title)
) ENGINE=InnoDB DEFAULT CHARACTER SET 'UTF8' COLLATE 'UTF8_GENERAL_CI';
And change it to:
CREATE TABLE /*TABLE_PREFIX*/t_item_description (
fk_i_item_id INT(10) UNSIGNED NOT NULL,
fk_c_locale_code CHAR(5) NOT NULL,
s_title VARCHAR(100) NOT NULL,
s_description MEDIUMTEXT NOT NULL,
PRIMARY KEY (fk_i_item_id, fk_c_locale_code),
FULLTEXT s_description (s_description, s_title)
) ENGINE=MyISAM DEFAULT CHARACTER SET 'UTF8' COLLATE 'UTF8_GENERAL_CI';
Then you can initiate installation.