SQLSTATE[HY000]: General error: 1191 Can’t find FULLTEXT index matching the column list
1. If the table’s engine is InnoDB change it to MYISAM.
2. Add FULLTEXT INDEX on the column that you plan to search. For example “title” in table “tbl_articles”.
2. Add FULLTEXT INDEX on the column that you plan to search. For example “title” in table “tbl_articles”.
ALTER TABLE ‘tbl_articles’ ADD FULLTEXT (‘title’)