Jetzt wollte ich aber heute ein drittes Board damit ausstatten und nun bekomme ich folgende Fehlermeldung:
Code: Alles auswählen
Allgemeiner Fehler
Could not obtain topics information
DEBUG MODE
SQL Error : 1146 Table 'kingdomofmadness_de.phpbb2_topics' doesn't exist
SELECT t.*, p.poster_id, p.post_username, p.enable_bbcode, p.enable_html, p.enable_smilies, u.username, pt.post_text, pt.bbcode_uid, lp.poster_id AS lp_poster_id, lu.username AS lp_username, lp.post_username AS lp_post_username, lp.post_time AS lp_post_time FROM phpbb2_topics AS t, phpbb2_posts AS p, phpbb2_posts_text AS pt, phpbb2_users AS u, phpbb2_posts AS lp, phpbb2_users lu WHERE p.post_id = t.topic_first_post_id AND pt.post_id = t.topic_first_post_id AND u.user_id = p.poster_id AND lp.post_id = t.topic_last_post_id AND lu.user_id = lp.poster_id AND t.topic_calendar_time < 1093557600 AND (t.topic_calendar_time + t.topic_calendar_duration) >= 1092952800 AND t.topic_status <> 2 AND t.forum_id IN (1, 4, 3, 5, 6, 9, 10, 11, 7) ORDER BY t.topic_calendar_time, t.topic_calendar_duration DESC, t.topic_last_post_id DESC
Line : 261
File : /is/htdocs/XXXXXX/www.kingdomofmadness.de/europefans/includes/functions_calendar.php
ÖFFNEN: phpBB-Verzeichnis/includes/page_header.php
[FINDEN]:
//
// The following assigns all _common_ variables that may be used at any point
// in a template.
//
[DAVOR EINFÜGEN]:
//
// chCounter
//
ob_start();
INCLUDE_CODE
$chCounter = ob_get_contents();
ob_end_clean();
[ERSETZE IN OBIGEM CODE "INCLUDE_CODE" DURCH DEN INCLUDE-CODE DES COUNTERS]
[FINDEN]:
'SITENAME' => $board_config['sitename'],
[DAVOR EINFÜGEN]:
'COUNTER' => $chCounter,
#
#-----[ AKTION: ]------------------------------------------
# ÖFFNEN: phpBB-Verzeichnis/includes/functions.php
[FINDEN]:
function message_die($msg_code, $msg_text = '', $msg_title = '', $err_line = '', $err_file = '', $sql = '')
{
global $db, $template, $board_config, $theme, $lang, $phpEx, $phpbb_root_path, $nav_links, $gen_simple_header, $images;
global $userdata, $user_ip, $session_length;
global $starttime;
[DANACH EINFÜGEN]:
global $HTTP_SERVER_VARS, $HTTP_GET_VARS, $HTTP_COOKIE_VARS;
So, der Include Code meines Counters sieht dann folgendermaßen aus:
Code: Alles auswählen
//
// chCounter
//
ob_start();
$chCounter_visible = "0";
include("/is/htdocs/XXXXX/www.kingdomofmadness.de/europefans/counter/counter.php");
$chCounter = ob_get_contents();
ob_end_clean();
Wenn ich den Code aus der PageHeader rausnehme, kommt keine Fehlermeldung. Woran liegts?