emtipp_forum_threads fehlt

Ich habe einen Blog Artikel verfasst - Wie benutze ich die Suche richtig - Bitte diesen beachten und auch umsetzen bevor Ihr ein Neues Thema eröffnet!

  • Hallo,


    beim Erstellen eines Forum-Threads kommt diese Meldung.


    Table '....emtipp_forum_threads' doesn't exist


    Ich wollte erst die Tabelle selbst anlegen, aber in welchem Format, bzw. mit wie vielen Spalten?

  • Ich hab Dir mal die Tabelle vom WM-Tipp 2014 angehängt. Wahrscheinlich wird die noch passen.


  • Dann probier es mal damit. Ist aus einem MySQL-Dump vom WM-Tipp.

    Code
    1. CREATE TABLE `emtipp_forum_threads` (
    2. `id` int(11) NOT NULL AUTO_INCREMENT,
    3. `headline` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
    4. `date` int(14) NOT NULL DEFAULT '0',
    5. `autor` int(11) NOT NULL DEFAULT '0',
    6. `board` int(11) NOT NULL DEFAULT '0',
    7. `lpost` int(14) NOT NULL DEFAULT '0',
    8. `ip` varchar(39) COLLATE utf8_unicode_ci DEFAULT NULL,
    9. PRIMARY KEY (`id`)
    10. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;