Verfasst: 24.05.2005 20:54
Exisitert die Tabelle phpbb2_search_wordmatch überhaupt?
Wenn nicht, führe diesen Code in phpmyadmin aus (siehe KB:pma_faq).
Wenn nicht, führe diesen Code in phpmyadmin aus (siehe KB:pma_faq).
Code: Alles auswählen
CREATE TABLE phpbb2_search_wordmatch (
post_id mediumint(8) UNSIGNED NOT NULL default '0',
word_id mediumint(8) UNSIGNED NOT NULL default '0',
title_match tinyint(1) NOT NULL default '0',
KEY post_id (post_id),
KEY word_id (word_id)
);