When installing IP on my wamp server I always run into this problem when installing the database...The used table type doesn't support FULLTEXT indexes
After spending a great deal of time to figure out a quick and easy solution I finally found this one...
Basically MySQL 5 on Windows servers are setting default table types to innodb instead of myisam, and as innodb doesn't support fulltext, it causes this problem
Locate your my.ini and find:
and replace with this
I hope that helps someone...