Ich habe mir mal eine Neue Statistik für den Statistih-MOD instaliert.
Diese Hier
Code: Alles auswählen
########################################################
## Mod Titel: most played
## Mod Version: 1.0
## phpBB- Version: 2.0.x
## Datum: 12.12.2003
## Autor: Crazy Iceman
## Beschreibung: Modul für die Statistiken (zeigt die am meisten aufgerufenen Spiele an).
## (Statistic-Mod von Acyd Burn und Activity-Mod von Napoleon werden hierfür benötigt).
## Schwierigkeitsgrad
## der Installation: leicht
## Installationsdauer: ca. 5 Minuten
## Veränderte Dateien: activity.php
## Zusätzliche Dateien: stats_module/most_played/module.tpl
## stats_module/most_played/module.php
## stats_module/most_played/info.txt
## stats_module/most_played/lang_german/lang.php
########################################################
##
## Kontakt: Crazy Iceman
## Homepage: http://www.Lifelike-Board.de
## E- Mail: Mail@Lifelike-Board.de
##
########################################################
-------------------------------------------------------------------
Führe folgenden Befehl in phpMyAdmin aus:
ALTER TABLE 'phpbb_ina_games' ADD 'game_played' INT(11) DEFAULT '0'
-------------------------------------------------------------------
Suche in activity.php folgendes:
include($gamepath);
exit;
}
}
Füge DAVOR folgendes ein:
$sql = "UPDATE phpbb_ina_games
SET game_played = game_played + 1
WHERE game_id = " . $game_id . "";
if (!$db->sql_query($sql))
{
message_die(GENERAL_ERROR, 'Could not update Game Data', '', __LINE__, __FILE__, $sql);
}
die 1. wenn ich ein Spiel Starten will.
Code: Alles auswählen
Could not update Game Data
DEBUG MODE
SQL Error : 1054 Unknown column 'game_played' in 'field list'
UPDATE phpbb_ina_games SET game_played = game_played + 1 WHERE game_id = 2
Line : 148
File : /usr/local/httpd/htdocs/pd40157/html/phpBB2/activity.php
Code: Alles auswählen
Couldn't retrieve game data
DEBUG MODE
SQL Error : 1054 Unknown column 'game_played' in 'field list'
SELECT SUM(game_played) as total_played FROM phpbb_ina_games WHERE game_id > 0
Line : 32
File : /usr/local/httpd/htdocs/pd40157/html/phpBB2/stat_modules/most_played/module.php
Woran könnte es liegen???? Kann mir da vieleicht jemand helfen.