ich wollte gerade anfangen das Blog Modul zu installieren wo gerade bei der index.php die erste Fehlermeldung kam!?
#-----[ OPEN ]------------------------------------------
# OPTIONAL - Adds Recent Weblogs to your index.php page (Make sure to do the template changes as well)
#
index.php
#
#-----[ FIND ]------------------------------------------
#
//
// Start output of page
//
#
#-----[ BEFORE, ADD ]------------------------------------------
#
//
// Begin - "The Blog Mod" changes
//
include($phpbb_root_path . 'includes/weblogs_common.'.$phpEx);
include($phpbb_root_path . 'includes/functions_weblog.'.$phpEx);
//
// Get Weblog Data
//
$weblog_data = fetch_visible_weblogs ();
for ($i = 0; $i < count($weblog_data) && $i < 10; $i++)
{
if ( !empty($recent_weblogs) )
{
$recent_weblogs .= ', <a href="' . append_sid ("weblog.$phpEx?" . POST_WEBLOG_URL . "=" . $weblog_data[$i]['weblog_id']) . '"';
}
else
{
$recent_weblogs = '<a href="' . append_sid ("weblog.$phpEx?" . POST_WEBLOG_URL . "=" . $weblog_data[$i]['weblog_id']) . '"';
}
if ( $weblog_data[$i]['user_level'] == ADMIN )
{
$recent_weblogs .= ' style="color:#' . $theme['fontcolor3'] . '">';
}
else if ( $weblog_data[$i]['user_level'] == MOD )
{
$recent_weblogs .= ' style="color:#' . $theme['fontcolor2'] . '">';
}
else
{
$recent_weblogs .= '>';
}
if ( $weblog_config['index_list_by_username'] )
{
$recent_weblogs .= $weblog_data[$i]['username'] . '</a>';
}
else
{
$recent_weblogs .= $weblog_data[$i]['weblog_name'] . '</a>';
}
}
//
// End - "The Blog Mod" changes
//
Die Meldung kam:
Und das steht in der datei ( line 61 ):phpBB : Critical Error
Could not query config information
DEBUG MODE
SQL Error : 1146 Table 'usr_web64_11.WEBLOG_CONFIG_TABLE' doesn't exist
SELECT * FROM WEBLOG_CONFIG_TABLE
Line : 61
File : weblogs_common.php
Schade... immer wieder hagt es bei mir mit den Modulen. Glaube ich bin da was zu blöde fürmessage_die(CRITICAL_ERROR, "Could not query config information", "", __LINE__, __FILE__, $sql);

Bitte wer kann mir da schon bei der Index.php helfen?
Oder kann einer es mir für installieren? Bin auch bereit es zu bezahlen oder ein Linkplatz dafür zu geben.
Gruss Micha