Hallo,
das Problem habe ich schon seit geraumer Zeit gelöst... einfach mal die
admin_statistics.php umbenennen, dann geht der Frame erstmal wieder.
Ich weiss auch nicht mehr, wie ich das Problem dann gelöst habe, aber hier mal die ersten Zeilen der admin_statistics.php:
Code: Alles auswählen
<?php
/***************************************************************************
* admin_statistics.php
* -------------------
* begin : Sat, Aug 31, 2002
* copyright : (C) 2002 Meik Sievertsen
* email : acyd.burn@gmx.de
*
* $Id: admin_statistics.php,v 1.13 2003/02/05 13:12:02 acydburn Exp $
*
*
***************************************************************************/
/***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
***************************************************************************/
define('IN_PHPBB', true);
//
// Let's set the root dir for phpBB
//
$phpbb_root_path = './../';
require($phpbb_root_path . 'extension.inc');
if (!empty($board_config))
{
include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_statistics.' . $phpEx);
}
if( !empty($setmodules) )
{
$filename = basename(__FILE__);
$module['Statistics']['Statistics_management'] = $filename . '?mode=manage';
$module['Statistics']['Statistics_config'] = $filename . '?mode=config';
return;
}
require('pagestart.' . $phpEx);
$__stats_config = array();
$sql = 'SELECT *
FROM ' . STATS_CONFIG_TABLE;
if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not query statistics config table', '', __LINE__, __FILE__, $sql);
}
while ($row = $db->sql_fetchrow($result))
{
$__stats_config[$row['config_name']] = trim($row['config_value']);
}
include($phpbb_root_path . 'includes/functions_stats.' . $phpEx);
include($phpbb_root_path . 'includes/functions_module.' . $phpEx);
include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_statistics.' . $phpEx);
//
// Try to re-assign Images for Admin Display
//
Gruss Bernd