I\'m trying to do MySQL fulltext search using the following query:
SELECT * FROM files WHERE MATCH(title) AGAINST ($q) limit $limit
The pro
Check this page in the documentation -- basically you set ft_min_word_len=3 (or 2), restart the server, and rebuild your FULLTEXT indexes.