Habe jetzt nochmal ganz von vorne angefangen.
Neues phpBB 3.03 installiert und den Mod installiert.
Das mit dem Modul hat jetzt auch geklappt.
Jetzt hab ich aber folgendes Problem wenn ich auf ein Thema klicke.
Code: Alles auswählen
General Error
SQL ERROR [ mysqli ]
Unknown column 'tg.topic_tag_name' in 'field list' [1054]
SQL
SELECT t.*, f.*, tg.topic_tag_name, tg.topic_tag_colour, tw.notify_status, bm.topic_id as bookmarked, tt.mark_time, ft.mark_time as forum_mark_time FROM (phpbb_forums f, phpbb_topics t) LEFT JOIN phpbb_topics_watch tw ON (tw.user_id = 2 AND t.topic_id = tw.topic_id) LEFT JOIN phpbb_bookmarks bm ON (bm.user_id = 2 AND t.topic_id = bm.topic_id) LEFT JOIN phpbb_topics_track tt ON (tt.user_id = 2 AND t.topic_id = tt.topic_id) LEFT JOIN phpbb_forums_track ft ON (ft.user_id = 2 AND t.forum_id = ft.forum_id) WHERE t.topic_id = 1 AND (f.forum_id = t.forum_id OR (t.topic_type = 3 AND f.forum_id = 2))
BACKTRACE
FILE: includes/db/mysqli.php
LINE: 163
CALL: dbal->sql_error()
FILE: viewtopic.php
LINE: 263
CALL: dbal_mysqli->sql_query()
Dabei ist mir aufgefallen das sich der Code in viewtopic.php wohl in dieser version geändert haben muss.
Bzw bin ich der Meinung das
Code: Alles auswählen
// Added by Topic Tags MOD
get_forum_topic_tags($sql_array);
// end added by Topic Tags MOD
nicht mehr nach
kommt.