MOD - Ähnliche Beiträge - Could not get main information for
Verfasst: 09.02.2006 18:31
Folgendes wird angezeigt nachdem ich den Mod einbauen wollte:
Viewtopic:Could not get main information for similar topics
DEBUG MODE
SQL Error : 1191 Can't find FULLTEXT index matching the column list
SELECT topic_id FROM phpbb_topics WHERE topic_id != 1718 AND MATCH (topic_title) AGAINST ('Bewerbung TEF') ORDER BY topic_time DESC LIMIT 0,5
Line : 397
File : viewtopic.php
Hab neuste PHPBB Version drauf. Woran kann das liegen?// Similar Topics
$sql = "SELECT topic_id
FROM ". TOPICS_TABLE ."
WHERE topic_id != $topic_id
AND MATCH (topic_title) AGAINST ('". addslashes($topic_title) ."')
ORDER BY topic_time DESC LIMIT 0,5";
if ( !($result = $db->sql_query($sql)) )
{
//Zeile 397 message_die(GENERAL_ERROR, "Could not get main information for similar topics", '', __LINE__, __FILE__, $sql);
}
$topics = array();
while ( $row = $d...
....