Seite 2 von 2
Verfasst: 09.01.2005 18:51
von Berndte
ich muss nochmal pushen....
... kann mir denn keiner helfen?
Ich wollte eigentlich auf die neueste Version updaten (händisch, wegen der vielen Mods) ... wäre aber nicht schlecht, wenn ich vorher wenigstens ein lauffähiges Forum habe.
Gruss Bernd
EDIT: habe jetzt erstmal auf 2.0.10 upgedatet.... keine Änderung

Verfasst: 10.01.2005 19:02
von Berndte
push...
habe jetzt auf die neuste Version (2.0.11) upgedatet.... immer noch das selbe Problem.
ich habe auch schon den /admin und den /templates/subSilver/admin/ Ordner auf einer neuen Installationsdatei hochgeladen... keine Änderung
woran zum Geier kann das denn noch liegen???
Verfasst: 11.01.2005 19:54
von Berndte
Habe den Fehler ausgemacht... muss in der
admin_statistics.php
http://forum.opel4x4.de/phpBB_test/admi ... istics.txt
vom Statistik-Mod von Acid liegen....
... sobald ich diese Datei hochlade kommt obige Fehlermeldung, lösche ich sie vom Server klappt alles (natürlich dann ohne Adminmöglichkeit der Statistik) ... die Statistik läuft auch problemlos.
Vielleicht findet ja wer den Fehler.... ich vermute einen Zusammenhang mit PHP5 (was jetzt auf´m Server rennt)
Gruss Bernd
PS: kann jetzt auch unter MOD verschoben werden, wenn ihr denkt, da passt das jetzt besser.
Verfasst: 06.03.2005 18:04
von Berndte
gibts schon ne Lösung?
ist ja jetzt eigentlich kein Problem mehr, aber wurmt mich halt trozdem noch

Verfasst: 20.09.2005 17:22
von RSRconnect
Scheint die Opel-Seiten zu treffen, bei uns auf calibra.org das gleiche.
Ist aufgetreten, nachdem wir auf einen neuen Server mit php5 umgezogen sind. Allerdings haben wir den Statistik-Mod nicht installiert, bei uns liegt es an dem KnowledgeBase-Mod.
Ich dachte eigentlich php5 wäre abwärts kompatibel. Werde mal schauen, ob ich das Problem lösen kann.
Verfasst: 20.09.2005 17:30
von Berndte
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