On a MySQL configured to use InnoDB by default, the install script fails to create the links table. Due to fulltext indexes, it seems that table needs to be created as myisam.
The suggested bugfix:
In createtables.php file, the fillowing should be changed from -
FULLTEXT KEY `link_tags` (`link_tags`)
) AUTO_INCREMENT=15 ;";
echo 'Creating table: \'links\'....<BR/>';
to -
FULLTEXT KEY `link_tags` (`link_tags`)
) AUTO_INCREMENT=15, TYPE=MYISAM;";
echo 'Creating table: \'links\'....<BR/>';




Linear Mode




