[solved] confusing output by search-function
Posted: Sat Mar 29, 2008 12:39 pm
After I could create a INDEX of my entries in the MySQL-database, finally my search-function works and finds the right entries matching the keywords. But now there is a confusing output at the end of the search-result what I don't know to handle. Can someone help me with that? It comes after the output how much pages and entries the search-result has:
If someone wants to see it in the page, you can visit my website at www.crasheratweb.de (it's in german).<pre>SELECT s.*, a.realname FROM serendipity_staticpages AS s LEFT OUTER JOIN serendipity_authors AS a ON a.authorid = s.authorid WHERE MATCH(headline,content) AGAINST('garvin') AND s.publishstatus = 1 AND s.pass = '' GROUP BY id ORDER BY timestamp DESC</pre> / Can't find FULLTEXT index matching the column list