So,
aus den betreffenden dateien mal die zeilen rausgesucht:
mysqli.php Zeile 182:
$this->sql_error($query);
cms_content.php Zeile 201:
$result = $db->sql_query($sql);
functions_module.php Zeile 529:
$this->module->main($this->p_name, $this->p_mode);
index.php Zeile 58:
$module->load_active();
Hier mal das was laut Installationsanweisung in die Index.php eingepflegt werden soll:
// Begin phpBB Primetime MOD
if ($config['cms_enabled'])
{
include($phpbb_root_path . 'includes/functions_module.' . $phpEx);
include($phpbb_root_path . 'modules/blocks/functions_blocks.' . $phpEx);
// Basic parameter data
$id = request_var('i', '');
$mode = request_var('mode', '');
$user->setup('common');
page_header();
$cms_alter_block = array();
$module = new p_master();
// Instantiate module system and generate list of available modules
$module->list_modules('cms');
// Select the active module
$module->set_active($id, $mode);
// Set custom template path
$tpl_path = $phpbb_root_path . "modules/$module->p_dir/template";
$mtemplate->set_custom_template($tpl_path, $module->p_dir);
// initialize
init_cms_vars();
init_cms_nav();
$blocks = new blocks($module->p_id, $module->p_dir, $module->p_mode);
// Load and execute the relevant module
$module->load_active();
// display blocks
$blocks->display();
$template->assign_var('PAGE_TITLE', $module->get_page_title());
$template->set_filenames(array(
'body' => 'cms/cms_layout.html')
);
if (sizeof($cms_alter_block))
{
foreach ($cms_alter_block as $handle => $row)
{
foreach ($row as $key => $tpl_ary)
{
$template->alter_block_array($handle, $tpl_ary, $key);
}
}
}
unset($mtemplate, $module, $blocks);
page_footer();
}
// End phpBB Primetime MOD
Der rote Text ist die Fehlerzeile in der index.php, vielleicht kommen wir ja so dem Fehler auf die Schliche....
EDIT: Es scheint sich ja jetzt raus zu stellen, das der Fehler ursächlich im Primetime MOD 1.0.4 zu suchen ist. Vielleicht kann der Thread verschoben werden?