|
Phpbb last resort
ok, basically i have had this problem for 2 weeks now, i changed web host, installed a new forum onto the new server, and tried to upload a backup. but it was too large after alot off reasearch and questions realised i had to break them up and use phpmyadmin, SO i have installed the broken up files via phpmyadmin, my 9mb file was broken up into 9 chunks, BUT when i imported it 2 of the 9 came up with the following errors:
Quote:
Quote:
SQL query:
INSERT INTO phpbb_search_wordlist( word_text, word_id, word_common )
VALUES (
'scared', '3470', '0'
);
MySQL said:
#1062 - Duplicate entry 'scared' for key 1
SQL query:
SELECT *
FROM
WHERE CONCAT_WS( "-", word_text, word_id, word_common ) = "scared"
ORDER BY word_text, word_id, word_common
MySQL said:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE CONCAT_WS( "-", word_text, word_id, word_common )
|
and
Quote:
Quote:
SQL query:
CREATE TABLE phpbb_themes_name(
themes_id smallint( 5 ) unsigned NOT NULL ,
tr_color1_name char( 50 ) ,
tr_color2_name char( 50 ) ,
tr_color3_name char( 50 ) ,
tr_class1_name char( 50 ) ,
tr_class2_name char( 50 ) ,
tr_class3_name char( 50 ) ,
th_color1_name char( 50 ) ,
th_color2_name char( 50 ) ,
th_color3_name char( 50 ) ,
th_class1_name char( 50 ) ,
th_class2_name char( 50 ) ,
th_class3_name char( 50 ) ,
td_color1_name char( 50 ) ,
td_color2_name char( 50 ) ,
td_color3_name char( 50 ) ,
td_class1_name char( 50 ) ,
td_class2_name char( 50 ) ,
td_class3_name char( 50 ) ,
fontface1_name char( 50 ) ,
fontface2_name char( 50 ) ,
fontface3_name char( 50 ) ,
fontsize1_name char( 50 ) ,
fontsize2_name char( 50 ) ,
fontsize3_name char( 50 ) ,
fontcolor1_name char( 50 ) ,
fontcolor2_name char( 50 ) ,
fontcolor3_name char( 50 ) ,
span_class1_name char( 50 ) ,
span_class2_name char( 50 ) ,
span_class3_name char( 50 ) ,
fontcolor5_name char( 50 ) DEFAULT 'Administrators'color ', fontcolor6_name char(50) DEFAULT 'Moderators ' color',
PRIMARY KEY ( themes_id )
);
MySQL said:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'color',
fontcolor6_name char(50) DEFAULT 'Moderators' color',
|
i don't have a clue what to do. speak in noob language please 
|