Duplicate column name 'tipp_lastpos'
Verfasst: 16.03.2006 17:13
Hallo,
ich versuche gerade verzweifelt die SQL installation für den Mod vorzunehmen. Habe zwei Varianten ausprobiert... zum einen hatte ich zunächst versucht den in der Installationsanleitung enthaltenen Text im SQL einzubinden doch hier kam schon das erste mal der Duplicate column name 'tipp_lastpos'" Error! Danach habe ich die beiliegende Datei db_install.php auf dem server ausgeführt. Und dabei kamen folgende Fehlercodes. Erbitte dringend eure Hilfe...
Danke!
PS: Hatte vorher die version 1.0.4b mal auf dem server und wollte nun komplett auf 1.1.2b umstellen. Im übrigen die Installation von 1.0.4b hatte problemlos funktioniert...also liegt es vermutlich an einer neuerung der daten...?
ich versuche gerade verzweifelt die SQL installation für den Mod vorzunehmen. Habe zwei Varianten ausprobiert... zum einen hatte ich zunächst versucht den in der Installationsanleitung enthaltenen Text im SQL einzubinden doch hier kam schon das erste mal der Duplicate column name 'tipp_lastpos'" Error! Danach habe ich die beiliegende Datei db_install.php auf dem server ausgeführt. Und dabei kamen folgende Fehlercodes. Erbitte dringend eure Hilfe...
Danke!
PS: Hatte vorher die version 1.0.4b mal auf dem server und wollte nun komplett auf 1.1.2b umstellen. Im übrigen die Installation von 1.0.4b hatte problemlos funktioniert...also liegt es vermutlich an einer neuerung der daten...?
Code: Alles auswählen
# ALTER TABLE `phpbb_users` ADD `tipp_lastpos` INT(3) NOT NULL , ADD `tipp_punkte` INT(10) NOT NULL , ADD `tipp_treffer` INT(3) NOT NULL , ADD `tipp_getippt` INT(3) NOT NULL , ADD `tipp_spieltagtipps` INT(2) , ADD `tipp_reminder` INT(2) DEFAULT '0' NOT NULL
+++ Error: Duplicate column name 'tipp_lastpos'
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_tippusermail', '0')
+++ Erfolgreich
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_trefferpkt', '5')
+++ Error: Duplicate entry 'tipp_trefferpkt' for key 1
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_endetippabgabe', '0')
+++ Erfolgreich
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_tendenzpkt', '2')
+++ Error: Duplicate entry 'tipp_tendenzpkt' for key 1
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_differenzpkt', '1')
+++ Error: Duplicate entry 'tipp_differenzpkt' for key 1
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_unentschpkt', '3')
+++ Error: Duplicate entry 'tipp_unentschpkt' for key 1
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_ticker', '1')
+++ Error: Duplicate entry 'tipp_ticker' for key 1
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_tipptopic', '0')
+++ Error: Duplicate entry 'tipp_tipptopic' for key 1
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_spieltaganzahl', '34')
+++ Error: Duplicate entry 'tipp_spieltaganzahl' for key 1
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_spielespieltag', '9')
+++ Error: Duplicate entry 'tipp_spielespieltag' for key 1
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_championsleagueplatz', '2')
+++ Error: Duplicate entry 'tipp_championsleagueplatz' for key 1
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_uefacupplatz', '5')
+++ Error: Duplicate entry 'tipp_uefacupplatz' for key 1
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_championsleagueplatzquali', '3')
+++ Error: Duplicate entry 'tipp_championsleagueplatzquali' for key 1
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_absteigerplatz', '16')
+++ Error: Duplicate entry 'tipp_absteigerplatz' for key 1
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_pktanzeige', '1')
+++ Error: Duplicate entry 'tipp_pktanzeige' for key 1
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_unentschpktextra', '0')
+++ Error: Duplicate entry 'tipp_unentschpktextra' for key 1
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_usertippanzeige', '1')
+++ Error: Duplicate entry 'tipp_usertippanzeige' for key 1
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_topicforum', '0')
+++ Erfolgreich
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_shortwappen', '0')
+++ Erfolgreich
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_tippspielonoff', '1')
+++ Erfolgreich
# INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_tippspielgroup', '0')
+++ Erfolgreich
# CREATE TABLE tippspiel_spieltage ( spielid int(3) NOT NULL default '0', heim varchar(25) NOT NULL default '0', auswarts varchar(25) NOT NULL default '0', heimtore int(2) default NULL, auswartstore int(2) default NULL, spieltag int(2) NOT NULL default '0', datumzeit int(11) default '0', tabelle int(1) NOT NULL default '0' ) TYPE=MyISAM
+++ Erfolgreich
# CREATE TABLE tippspiel_tabelle ( teamid int(2) NOT NULL default '0', name varchar(25) NOT NULL default '', gewonnen int(2) NOT NULL default '0', unentschieden int(2) NOT NULL default '0', verloren int(2) NOT NULL default '0', tore int(3) NOT NULL default '0', gegentore int(3) NOT NULL default '0', diff int(3) NOT NULL default '0', punkte int(2) NOT NULL default '0', spiele int(2) NOT NULL default '0', posbefore int(2) NOT NULL default '0', homepage varchar(40) NOT NULL default '', shortcut varchar(10) NOT NULL default '', wappen varchar(80) NOT NULL default '' ) TYPE=MyISAM
+++ Erfolgreich
# CREATE TABLE tippspiel_user_spieltage ( userid int(2) NOT NULL default '0', spieltag int(2) NOT NULL default '0', punkte int(3) NOT NULL default '0', treffer int(2) NOT NULL default '0', tagessieg int(2) NOT NULL default '0' ) TYPE=MyISAM
+++ Erfolgreich
# CREATE TABLE tippspiel_usertips ( spielid int(3) NOT NULL default '0', heimtipp int(2) default NULL, auswartstipp int(2) default NULL, userid int(2) NOT NULL default '0', bewertet int(2) default NULL, tabelle int(2) NOT NULL default '0', tippzeit int(11) default NULL, spieltag INT(2) NOT NULL default '0' ) TYPE=MyISAM
+++ Erfolgreich
# CREATE TABLE tippspiel_extraspiele ( extraspielid INT( 3 ) NOT NULL , heim VARCHAR( 25 ) NOT NULL , auswarts VARCHAR( 25 ) NOT NULL , heimtore INT( 2 ) , auswartstore INT( 2 ) , zeit INT( 11 ) , tabelle INT( 1 ) NOT NULL , anlass VARCHAR( 50 ) NOT NULL ) TYPE=MyISAM
+++ Erfolgreich
# CREATE TABLE tippspiel_extraspieleusertips ( extraspielid INT(3) NOT NULL, heimtipp INT(2), auswartstipp INT(2), userid INT(2) NOT NULL, bewertet INT(2), tabelle INT(2) NOT NULL, tippzeit INT(11) ) TYPE=MyISAM
+++ Erfolgreich