Wersje 1.9 i starsze - [SQL] Potrzebna pomoc...
matriss - 08-04-2004, 12:13 Temat postu: [SQL] Potrzebna pomoc... W phpMyAdmin skasowałem niechcęcy tabelą: phpbb_themes_name.
Mam drugie forum, również byPrzemo. Czy istnieje możliwość przniesienia takiej tabeli z jednego do drugiego? Jeśli tak, to w jaki sposób. Proszę, pomóżcie.
Crack - 08-04-2004, 21:26
Jeśli masz na obydwu forach te same style, to nie powinno był problemu.
W phpMyAdmin jest zakładka Eksport. Przejd? do niej i wybierz do eksportu tylko tabelą phpbb_themes_name. W forum w którym wykasowałe? tabelą przejd? do zakładki SQL i wklej tam zawartość wygenerowanego wcześniej archiwum lub podaj mu ?cie?k? do archiwum na Twoim dysku.
Możesz też spróbować w feralnym forum od razu przej?? do zakładki SQL i wkleić tam:
Cytat: | CREATE TABLE `phpbb_themes_name` (
`themes_id` smallint(5) unsigned NOT NULL default '0',
`tr_color1_name` char(50) default NULL,
`tr_color2_name` char(50) default NULL,
`tr_color3_name` char(50) default NULL,
`tr_class1_name` char(50) default NULL,
`tr_class2_name` char(50) default NULL,
`tr_class3_name` char(50) default NULL,
`th_color1_name` char(50) default NULL,
`th_color2_name` char(50) default NULL,
`th_color3_name` char(50) default NULL,
`th_class1_name` char(50) default NULL,
`th_class2_name` char(50) default NULL,
`th_class3_name` char(50) default NULL,
`td_color1_name` char(50) default NULL,
`td_color2_name` char(50) default NULL,
`td_color3_name` char(50) default NULL,
`td_class1_name` char(50) default NULL,
`td_class2_name` char(50) default NULL,
`td_class3_name` char(50) default NULL,
`fontface1_name` char(50) default NULL,
`fontface2_name` char(50) default NULL,
`fontface3_name` char(50) default NULL,
`fontsize1_name` char(50) default NULL,
`fontsize2_name` char(50) default NULL,
`fontsize3_name` char(50) default NULL,
`fontcolor1_name` char(50) default NULL,
`fontcolor2_name` char(50) default NULL,
`fontcolor3_name` char(50) default NULL,
`span_class1_name` char(50) default NULL,
`span_class2_name` char(50) default NULL,
`span_class3_name` char(50) default NULL,
PRIMARY KEY (`themes_id`)
) TYPE=MyISAM;
INSERT INTO `phpbb_themes_name` VALUES (1, 'The lightest row colour', 'The medium row color', 'The darkest row colour', '', '', '', 'Border round the whole page', 'Outer table border', 'Inner table border', 'Silver gradient picture', 'Blue gradient picture', 'Fade-out gradient on index', 'Background for quote boxes', 'All white areas', '', 'Background for topic posts', '2nd background for topic posts', '', 'Main fonts', 'Additional topic title font', 'Form fonts', 'Smallest font size', 'Medium font size', 'Normal font size (post body etc)', 'Quote & copyright text', 'Code text colour', 'Main table header text colour', '', '', ''); |
Powinno zadziałał.
matriss - 08-04-2004, 22:31
Dziękuję, dziękuję Ci bardzo serdecznie za pomoc
|
|
|