Hallo, bin grad beim installieren und hab schon ein Problem.
#-----[ SQL ]-----------------------------------------------------------
#
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_meister` INT( 2 ) DEFAULT '0' NOT NULL ,
ADD `tipp_reminder` INT(2) DEFAULT '0' NOT NULL ;
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_koenig_pkt', '20');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_meister_pkt', '20');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_trefferalonepkt', '0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_trefferpkt', '5');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_tendenzpkt', '2');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_differenzpkt', '1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_unentschpkt', '3');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_ticker', '1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_tipptopic', '0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_spieltaganzahl', '34');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_spielespieltag', '9');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_championsleagueplatz', '2');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_uefacupplatz', '5');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_championsleagueplatzquali', '3');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_absteigerplatz', '16');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_pktanzeige', '1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_unentschpktextra', '0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_usertippanzeige', '1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_topicforum', '0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_shortwappen', '0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_tippspielonoff', '1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_tippspielgroup', '0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_endetippabgabe', '0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tipp_tippusermail', '0');
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;
CREATE TABLE `tippspiel_koenig` (
`id` INT( 2 ) NOT NULL AUTO_INCREMENT PRIMARY KEY,
`userid` INT(2) NOT NULL,
`spieler` VARCHAR( 30 ) NOT NULL ,
`verein` VARCHAR( 30 ) NOT NULL ,
`tore` INT( 2 ) DEFAULT '0' NOT NULL
) TYPE=MyISAM;
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;
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;
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;
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
);
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 )
);
#
#-----[ OPEN ]------------------------------------------
mit diesem Teil.
Ich bin in Phpmyadmin eingestiegen. Danach auf die users datei gegangen und jetzt muss ich auf einfügen gehen oder?
Wenn ich das mache kommen 300 Zeilen zum ausfüllen. Was muss ich da ausfüllen. Wie kann ich das anlegen.
edit: Hat sich erledigt. Habs geschafft.