MyBB Community Forums

Full Version: 1032 - Can't find record in 'mybb_threads'
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
One of threads showing the follwong error message:

MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1032 - Can't find record in 'mybb_threads'
Query:
SELECT t.*, t.username AS threadusername, u.username, MATCH (t.subject) AGAINST ('here was the thread title ?') AS relevance FROM mybb_threads t LEFT JOIN mybb_users u ON (u.uid = t.uid) WHERE t.fid='60' AND t.tid!='3153' AND t.visible='1' AND t.closed NOT LIKE 'moved|%' AND MATCH (t.subject) AGAINST ('here was the thread title ?') >= '5' ORDER BY t.lastpost DESC LIMIT 0, 10


How it fix it?

Thanks in advance.
Try to run this query in your phpMyAdmin:

REPAIR TABLE `mybb_threads`
Thank you! It worked Smile