The error message says:
Can’t find FULLTEXT index matching the column list
error code:
qmdb
Example Query:
SELECT wp_posts.*, MATCH (wp_posts.post_title,wp_posts.post_content) AGAINST ('Einfach erkl?rt: Smarthome?') as score
FROM wp_posts
WHERE 1=1
AND ( ( wp_posts.post_date >= '2021-01-03 00:00:00'
AND wp_posts.post_date <= '2022-01-03 14:21:11' ) )
AND wp_posts.ID NOT IN (2170,46176,51516,52842,32934,52848,79804)
AND wp_posts.post_type = 'post'
AND ((wp_posts.post_status = 'publish'
OR wp_posts.post_status = 'inherit'))
AND MATCH (wp_posts.post_title,wp_posts.post_content) AGAINST ('Einfach erkl?rt: Smarthome?')
ORDER BY score DESC
LIMIT 0, 5