Related Entries Plugin with WP 2.2
When I tried to install WASABI’s nice related entries plugin on my new Wordpress site geekland it failed with the following error:
#1214 - The used table type doesn’t support FULLTEXT indexes
I am not sure if this is WP2.2 related - in the schema creation source I found no difference to 2.1 in the posts table - but I never had that problem with 2.1.
The solution is to convert the wp_posts table to ISAM (MyISAM) by issuing
ALTER TABLE `wp_posts` ENGINE = MYISAM
and after that re-issue the installation script of WASABI what does not more than:
alter table wp_posts add fulltext post_related (post_name, post_content)
Well, on my development system, the WP2.2 database was created in InnoDB format. and InnoDB does not support fulltext-search columns.
That’s all.










November 10th, 2007 at 4:56 am
[…] Rainer Feike for sql error […]