When enabling full text search with MySQL what data is indexed and searchable?
Are pages that inherit from SiteTree searchable? If so what fields etc?
Is it possible to add custom fields to be indexed?
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.
Hi @RaulHarness,
I believe Silverstripe uses all the columns in the SiteTree_Live table for search.
So i would say the best option is to override the results function in your Page_Controller and write your own query to search for your custom fields
Thanks
Michael