I am using the system default SearchForm, but I found it seems that system do not allow me search some words like "what", "how", etc, if I search these words, it will show that there is no records, but I do have these data in database. any idea? thanks!
We've moved the forum!
Please use forum.silverstripe.org for any new questions
(announcement).
The forum archive will stick around, but will be read only.
You can also use our Slack channel
or StackOverflow to ask for help.
Check out our community overview for more options to contribute.
That is probably because MySQL is configured to use a stopwords list for fulltext searches:
http://dev.mysql.com/doc/refman/5.1/en/fulltext-stopwords.html
So not technically a SilverStripe issue
Thanks for your reply!!