Hallo! Ich habe mir die Mini Forum Statistik heruntergeladen und meines Erachtens auch korrekt installiert. Wenn ich nun einloggen will kommt folgende Fehlermeldung:
Could not obtain topic information
DEBUG MODE
SQL Error : 1054 Unknown column 't.forum_id' in 'on clause'
SELECT t.*, u.username, u.user_id, u2.username as user2, u2.user_id as id2, p.post_username, p2.post_username AS post_username2, p2.post_time FROM phpbb_topics t, phpbb_users u, phpbb_posts p, phpbb_posts p2, phpbb_users u2 LEFT JOIN phpbb_forums f ON t.forum_id=f.forum_id WHERE t.topic_poster = u.user_id AND p.post_id = t.topic_first_post_id AND p2.post_id = t.topic_last_post_id AND u2.user_id = p2.poster_id AND f.auth_view < 2 ORDER BY t.topic_last_post_id DESC LIMIT 5
Line : 188
File : actualstats.php
Anm:
- Ich nutze das Artemis-template
Danke schön Hümmi
Mini Forum Statistik- Fehler nach Einbau
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Scheint wohl keinen zu interessieren. Werden mehr Hinweise zum Fehler gebraucht? Das Forum läuft bisher einwandfrei mit der Version 2.0.20. Ich habe vorher nur kleine Mods zur Administration installiert, die ebenfalls bisher einwandfrei laufen.
Ich hoffe, es kann mir doch jemand dabei helfen, den Fehler zu finden...
Danke schön
Ich hoffe, es kann mir doch jemand dabei helfen, den Fehler zu finden...
Danke schön
hast du die anleitung abgearbeitet?
#-----[ COPY TO FOLDER ]------------------------------------------
#
COPY phpBB2/actualstats.php TO actualstats.php
COPY phpBB2/templates/actualstats_body.tpl TO templates/actualstats_body.tpl
COPY phpBB2/language/lang_english/lang_actualstats.php TO language/lang_english/lang_actualstats.php
COPY phpBB2/language/lang_german/lang_actualstats.php TO language/lang_german/lang_actualstats.php
#
#-----[ OPEN ]------------------------------------------
#
index.php
#
#-----[ FIND ]------------------------------------------
#
//
// Generate the page
//
$template->pparse('body');
#
#-----[ BEFORE, ADD ]------------------------------------------
#
include($phpbb_root_path . 'actualstats.'.$phpEx);
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/index_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<!-- BEGIN switch_user_logged_out -->
#
#-----[ BEFORE, ADD ]------------------------------------------
#
{ACTUALSTATS_OUTPUT}
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM