Beim Ausführen der Ausgabe von mysql_upgrader.php in phpMyAdmin gibt es dann diese Meldung:Dein MySQL-Datenbankschema ist veraltet. phpBB hat ein Schema für MySQL 3.x/4.x erkannt, der Server läuft aber mit MySQL 5.0.51a-3ubuntu5.4-log.
Bis phpbb_posts war alles auf UFT, alles weitere auf latin1_swedish_ci. Also hab ich alle SQL-Befehle nach posts nochmal durchgegeben, was fehlerfrei möglich war.SQL-Befehl:
# Table: 'phpbb_posts' ALTER TABLE phpbb_posts MODIFY post_id mediumint(8) UNSIGNED NOT NULL auto_increment, MODIFY topic_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, MODIFY forum_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, MODIFY poster_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, MODIFY icon_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, MODIFY poster_ip varchar(40) DEFAULT '' NOT NULL COLLATE utf8_bin, MODIFY post_time int(11) UNSIGNED DEFAULT '0' NOT NULL, MODIFY post_approved tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, MODIFY post_reported tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, MODIFY enable_bbcode tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, MODIFY enable_smilies tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, MODIFY enable_magic_url tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, MODIFY enable_sig tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, MODIFY post_username varchar(255) DEFAULT '' NOT NULL COLLATE utf8_bin, MODIFY post_subject varchar(255) DEFAULT '' NOT NULL CO[...]
MySQL meldet: Dokumentation
#1283 - Column 'post_text' cannot be part of FULLTEXT index
Hab mir dann mal die Datenbank des ersten Forums angeschaut. Hier war der Prozess bei "phpbb_groups" gescheitert. Also ab dort nochmal durchgegeben, so dass nur nur noch groups auf latin1_swedish_ci steht. Danach war es möglich, wieder zu posten!
Nun habe ich bei Forum 2 den Updateprozess mal durchlaufen lassen. Wie bei Forum 1 kam eine Fehlermeldung:
#1091 - Can't DROP 'group_legend_name'; check that column/key exists
Langsam komme ich weiterDatenbankstruktur wird aktualisiert
Fortschritt :: . . . . . . . . . . . . . Erledigt
Ergebnis :: Einige Abfragen sind gescheitert. Die Abfragen und die zugehörigen Fehler sind weiter unten aufgeführt.
* Fehler :: BLOB/TEXT column 'post_username' used in key specification without a key length
SQL :: CREATE INDEX post_username ON phpbb_posts(post_username)
