Seite 1 von 1

MOD - Ähnliche Beiträge - Could not get main information for

Verfasst: 09.02.2006 18:31
von Djork
Folgendes wird angezeigt nachdem ich den Mod einbauen wollte:
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
Viewtopic:
// 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...
....
Hab neuste PHPBB Version drauf. Woran kann das liegen?

Verfasst: 09.02.2006 23:08
von Andy120
hi...

Füge das in deiner SQL Datenbank hinzu:

Code: Alles auswählen

ALTER TABLE phpbb_topics ADD FULLTEXT (topic_title);
Gruss, Andy

Verfasst: 10.02.2006 08:48
von Djork
Man.. danke..
Ich bin doch doof.. voll verpeilt das ich noch was an der DB machen muss... Danke!