Seite 1 von 3
Probleme nach Einbau des Statistic Mods
Verfasst: 09.03.2006 12:16
von Kermit
Seiten wurden alle upgedatet und hochgeladen, das Datenbank update ausgeführt. Allerdings bekomme ich nichts zu sehen, stattdesen diese Fehlermeldung:
Could not query statistics config table
DEBUG MODE
SQL Error : 1146 Table 'iosforum.stats_config' doesn't exist
SELECT * FROM stats_config
Line : 36
File : statistics.php
Wo könnte der Fehler liegen?
Re: Probleme nach Einbau des Statistic Mods
Verfasst: 09.03.2006 13:08
von gloriosa
Hallo,
der Fehler gemäß
Kermit hat geschrieben:Wo könnte der Fehler liegen?
liegt bei Dir, denn da fehlt die Tabelle in der Datenbank (>>> siehe auch KB:130 <<< ) !
Der Statistics MOD ist relativ einfach einzubauen und da hast hast Du die Anweisung in der Installationsanleitung
Code: Alles auswählen
#
# Installing the Statistics Mod (First Step -- Database):
#
# Upload this File to your phpBB2 Root Directory (where your config.php file is), it is only needed for installation:
#
# mod_table_inst.php -> mod_table_inst.php
#
#
# Now we want to create the tables, therefore we run mod_table_inst.php (http://www.yoursite.com/phpBB2/mod_table_inst.php)
# Contact me if you have questions or problems.
#
einfach ignoriert !

Re: Probleme nach Einbau des Statistic Mods
Verfasst: 09.03.2006 18:36
von Kermit
gloriosa hat geschrieben:
einfach ignoriert !
Nein, auch das wurde durchgeführt. Als die Fehlermeldung kam zur Sicherheit sogar ein 2tes mal.
Verfasst: 10.03.2006 22:04
von Kermit
Ein sanftes anschieben des ganzen ...
Hat einer eine Idee wo der Fehler liegen könnte?
"mod_table_inst.php" wurde hochgeladen und ausgeführt, und in die Datei "includes/constants.php" wurden die 2 zeilen eingefügt.
Gibt es noch eine mögliche Fehlerquelle?
Re: Probleme nach Einbau des Statistic Mods
Verfasst: 10.03.2006 23:56
von easygo
Bei der Fehlermeldung?
Kermit hat geschrieben:SQL Error : 1146 Table 'iosforum.stats_config' doesn't exist
Kaum! Sicher, dass die Tabelle ohne Fehler angelegt wurde?
Überprüf das mal mit phpMyAdmin. easy
Re: Probleme nach Einbau des Statistic Mods
Verfasst: 11.03.2006 00:32
von Kermit
easygo hat geschrieben:
Kaum! Sicher, dass die Tabelle ohne Fehler angelegt wurde?
Überprüf das mal mit phpMyAdmin. easy
Besten Dank für die Idee, aber wie komme ich jetzt drauf wo der Fehler ist?
Die Tabelle ist vorhanden, und wenn ich auf Operationen/Hilfsmittel/überprüfe Tabelle gehe bekomme ich als Antwort "OK"
Wo kann ich noch nach Fehlern suchen?
Verfasst: 11.03.2006 00:46
von easygo
Kermit hat geschrieben:Wo kann ich noch nach Fehlern suchen?
Hmja, wo... von außen schwer zu beurteilen. Also wenn du die geänderte
constants.php auch wirklich nach includes/ hochgeladen hast und auch sonst alles
OK ist deiner Meinung nach, dann schick mir mal deine Zugangsdaten.
Auf freiwilliger Basis! Garantie übernehme ich keine. easy
Verfasst: 12.03.2006 23:11
von Kermit
Sonst keiner eine Idee?
Kann es an irgendeinen Dateirest von einem alten Mod liegen?
Ich muste nach einer Hackattacke, mit dem update über alles drüberfahren und anschliessend die Mods neu installieren (alle sind noch nicht wieder oben.)
Verfasst: 14.03.2006 00:38
von Kermit
Noch immer keiner mit einer Idee?
Ich habe sogar die Datenbank deinstalliert und wieder neu installiert.
Die Meldung klingt erfolgversprechend, aber es funktioniert immer noch nicht:
Running :: CREATE TABLE phpbb_stats_config ( config_name varchar(50) NOT NULL default '', config_value varchar(255) NOT NULL default '', PRIMARY KEY (config_name) ) -> COMPLETED
Running :: CREATE TABLE phpbb_stats_modules ( module_id tinyint(8) NOT NULL default '0', name varchar(150) NOT NULL default '', active tinyint(1) NOT NULL default '0', installed tinyint(1) NOT NULL default '0', display_order mediumint(8) unsigned NOT NULL default '0', update_time mediumint(8) unsigned NOT NULL default '0', auth_value tinyint(2) NOT NULL default '0', module_info_cache blob, module_db_cache blob, module_result_cache blob, module_info_time int(10) unsigned NOT NULL default '0', module_cache_time int(10) unsigned NOT NULL default '0', PRIMARY KEY (module_id) ) -> COMPLETED
Running :: INSERT INTO phpbb_stats_config (config_name, config_value) VALUES ('install_date', '1142292948') -> COMPLETED
Running :: INSERT INTO phpbb_stats_config (config_name, config_value) VALUES ('return_limit', '10') -> COMPLETED
Running :: INSERT INTO phpbb_stats_config (config_name, config_value) VALUES ('version', '2.1.5') -> COMPLETED
Running :: INSERT INTO phpbb_stats_config (config_name, config_value) VALUES ('modules_dir', 'stat_modules') -> COMPLETED
Running :: INSERT INTO phpbb_stats_config (config_name, config_value) VALUES ('page_views', '0') -> COMPLETED
COMPLETE! Go to the Administration Panel and Install Modules. You have to install and activate Modules before you are able to see anything within the statistics page.
Statistics Mod Tables generated successfully.
NOW DELETE THIS FILE
Verfasst: 20.03.2006 10:21
von Miriam
Ist das jetzt ein Witz oder ein Aufmerksamkeitstest?
Die Fehlermeldung lautet:
- SQL Error : 1146 Table 'iosforum.stats_config' doesn't exist
SELECT * FROM stats_config
Und Du machst
- CREATE TABLE phpbb_stats_config
Das Skript sucht nach
iosforum.stats_config und Du baust eine
iosforum.phpbb_stats_config.
Das kann ja nichts werden.