Ich bin noch ziemlich frisch auf dem Gebiet des Forum betreibens. Dazu muss ich sagen, dass ich schon vor einigen Jahren ein kleines phpBB 2.x installiert hatte, welches auch gut funktionierte. Jetzt wollte ich aber auf Version 3.0.7PL1 updaten, was installationsmäßig auch ganz gut geklappt hat. Jetzt wollte ich nur noch die Inhalte der alten Datenbank importieren (vom Backup), aber da fangen jetzt die Probleme an.
Irgendwie scheint phpBB3 meine alten DB-Einträge nicht zu mögen, denn ich bekomme während des Konvertierens folgenden Fehler:
Woran liegt das bzw. was kann ich da machen? Kann mir einer den Fehler erklären und, wenns geht, auch gleich die Lösung davon preis geben?Allgemeiner Fehler
SQL ERROR [ mysql4 ]
Unknown column 'topics.topic_attachment' in 'field list' [1054]
SQL
SELECT topics.topic_id, topics.forum_id, topics.topic_poster AS poster_id, topics.topic_attachment, topics.topic_title, topics.topic_time, topics.topic_views, topics.topic_replies, topics.topic_last_post_id, topics.topic_status, topics.topic_type, topics.topic_first_post_id, posts.post_time, vote_desc.vote_text, vote_desc.vote_start, vote_desc.vote_length FROM (phpbb_topics topics LEFT JOIN phpbb_vote_desc AS vote_desc ON topics.topic_id = vote_desc.topic_id AND topics.topic_vote = 1) LEFT JOIN phpbb_posts AS posts ON topics.topic_last_post_id = posts.post_id WHERE (topics.topic_moved_id = 0) ORDER BY topics.topic_id LIMIT 2000
BACKTRACE
FILE: includes/db/mysql.php
LINE: 174
CALL: dbal_mysql->sql_error()
FILE: includes/db/mysql.php
LINE: 221
CALL: dbal_mysql->sql_query()
FILE: includes/db/dbal.php
LINE: 170
CALL: dbal_mysql->_sql_query_limit()
FILE: install/install_convert.php
LINE: 1233
CALL: dbal_mysql->sql_query_limit()
FILE: install/install_convert.php
LINE: 203
CALL: install_convert->convert_data()
FILE: install/index.php
LINE: 409
CALL: install_convert->main()
FILE: install/index.php
LINE: 286
CALL: module->load()
Guennie1568