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 :)

http://esolutionswork.com

Comments

tassoman’s picture

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

deeptii’s picture

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);

chueewowee’s picture

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?

chueewowee’s picture

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

alliax’s picture

Thank you for this thread and to Google, saved me a long long time!