Eigentlich nicht, aber auch dieser Versuch hat nix gebracht.easygo hat geschrieben: Wollen wir jetzt Erbsen zählen? Nimm halt die Neue!
Hier das Ergebnis:
# CREATE TABLE phpbb_stats_config ( config_name varchar(50) NOT NULL, config_value varchar(255) NOT NULL, PRIMARY KEY (config_name) )
+++ Error: Table 'phpbb_stats_config' already exists
# CREATE TABLE phpbb_stats_modules ( module_id tinyint(8) NOT NULL default '0', name varchar(150) NOT NULL, 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) )
+++ Error: Table 'phpbb_stats_modules' already exists
# INSERT INTO phpbb_stats_config (config_name, config_value) VALUES ('install_date', '1142893526')
+++ Error: Duplicate entry 'install_date' for key 1
# INSERT INTO phpbb_stats_config (config_name, config_value) VALUES ('return_limit', '10')
+++ Error: Duplicate entry 'return_limit' for key 1
# INSERT INTO phpbb_stats_config (config_name, config_value) VALUES ('version', '2.1.5')
+++ Error: Duplicate entry 'version' for key 1
# INSERT INTO phpbb_stats_config (config_name, config_value) VALUES ('modules_dir', 'stat_modules')
+++ Error: Duplicate entry 'modules_dir' for key 1
# INSERT INTO phpbb_stats_config (config_name, config_value) VALUES ('page_views', '0')
+++ Error: Duplicate entry 'page_views' for key 1
Wo kann ich das ganze direkt editieren?
easygo hat geschrieben: Damit wird der gleiche Präfix verwendet wie in der config.php vorgegeben
und wie es aussieht, hat er dort drin stehn ->
Code: Alles auswählen
$table_prefix = '';