By blogeration on
Installed drupal yesterday...
Posting content to my front page, in admin across the top I am getting this error message:
"Can't find FULLTEXT index matching the column list query: SELECT"
The page still appears ok, but I cannot figure out what's causing the message.
Advice most welcome :)
Comments
I got the same error
I got the same error inserting a new topic in forums, but I've upgraded from 4.5.0 to 4.6.3
geek, net addicted user
u got this error mainly
u got this error mainly because u installed the "Similar Entries" module, and u need to run this SQL:
ALTER TABLE node ADD FULLTEXT(title, body);
ReadMe.txt to the Similar module
the ReadMe.txt to the Similar module advises: ALTER TABLE < strong >node_revisions ADD FULLTEXT(title, body);
You say
ALTER TABLE node ADD FULLTEXT(title, body);
Which is correct?
Success with ALTER TABLE node_revisions
I had success in removing the error under discussion by running the SQL query:
ALTER TABLE node_revisions ADD FULLTEXT(title, body);
as given in the Similar module ReadMe.txt
Thank you for this thread
Thank you for this thread and to Google, saved me a long long time!