Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

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.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Can not search some specific words like "what", "how", etc


Go to End


3 Posts   1012 Views

Avatar
bobchou

Community Member, 5 Posts

31 January 2015 at 8:25am

Edited: 03/02/2015 7:02am

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!

Avatar
martimiz

Forum Moderator, 1391 Posts

1 February 2015 at 6:44am

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

Avatar
bobchou

Community Member, 5 Posts

3 February 2015 at 7:02am

Thanks for your reply!!