Yet more search function problems....
Posted: Fri Oct 22, 2004 7:04 am
I searched the forums and didn't seem to find anyone with the same problem as me. (though it's possible that I missed a solution if one already exists.)
I'm running MySQL 4.0.20 and PHP 4.3.9. I've checked my database and the entries table does have an index of entry_id (FULLTEXT title body extended etc...) BUT I still don't get any returs from queries. I put an echo in the query string so I could catch the output:
All seems well but alas "No Entries Found for Query Judging"
Any hints where to go from here would be greatly appreciated.
I'm running MySQL 4.0.20 and PHP 4.3.9. I've checked my database and the entries table does have an index of entry_id (FULLTEXT title body extended etc...) BUT I still don't get any returs from queries. I put an echo in the query string so I could catch the output:
Code: Select all
SELECT e.id, e.author, a.username, a.email, ec.categoryid, e.timestamp, e.comments, e.title, e.body, e.extended, e.trackbacks, e.exflag FROM s_entries e, s_authors a, s_entrycat ec WHERE a.authorid = e.authorid AND e.id = ec.entryid AND MATCH(title,body,extended) AGAINST('Judging') AND isdraft = 'false' AND timestamp <= 1098420672 GROUP BY e.id ORDER BY timestamp DESCAny hints where to go from here would be greatly appreciated.