Search failed on tw.org
The problem was that the fulltext index was split into to; ft with pageName and data and description with description. In order to be able to do a fullsearch on the 3 columns, you ned to have a fulltext index on these 3 columns.
drop index ft on tiki_pages;drop index description on tiki_pages;create fulltext index ft on tiki_pages (pageName,description,data);