MyBB.de Forum
mybb_icons - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html)
+--- Forum: MyBB 1.2.x und älter (https://www.mybb.de/forum/forum-27.html)
+---- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-36.html)
+---- Thema: mybb_icons (/thread-6479.html)



mybb_icons - Sunny Boy 13 - 15.07.2007

Hey Leute ich hab heute leider nicht absichtlich die Tabelle mybb_icons von der Datenbank gelöscht. Ich hab auch schon probiert sie selber zu machen aber ich bekomm das nicht hin =(

Kann mir bitte wer helfen =(


RE: mybb_icons - Garlant - 15.07.2007

Hallo Sunny Boy 13,

Führe dies im phpMyAdmin aus:
PHP-Code:
-- Tabellenstruktur für Tabelle `mybb_icons`
-- 

CREATE TABLE IF NOT EXISTS `mybb_icons` (
  `
iidsmallint(5unsigned NOT NULL auto_increment,
  `
namevarchar(120NOT NULL default '',
  `
pathvarchar(220NOT NULL default '',
  
PRIMARY KEY  (`iid`)
ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ;

-- 
-- 
Daten für Tabelle `mybb_icons`
-- 

INSERT INTO `mybb_iconsVALUES (1'myBB''images/icons/my.gif');
INSERT INTO `mybb_iconsVALUES (2'Exclamation''images/icons/exclamation.gif');
INSERT INTO `mybb_iconsVALUES (3'Question''images/icons/question.gif');
INSERT INTO `mybb_iconsVALUES (4'Smile''images/icons/smile.gif');
INSERT INTO `mybb_iconsVALUES (5'Sad''images/icons/sad.gif');
INSERT INTO `mybb_iconsVALUES (6'Wink''images/icons/wink.gif');
INSERT INTO `mybb_iconsVALUES (7'Cool''images/icons/cool.gif');
INSERT INTO `mybb_iconsVALUES (8'Big Grin''images/icons/biggrin.gif');
INSERT INTO `mybb_iconsVALUES (9'Toungue''images/icons/tongue.gif');
INSERT INTO `mybb_iconsVALUES (10'Rolleyes''images/icons/rolleyes.gif');
INSERT INTO `mybb_iconsVALUES (11'Shy''images/icons/shy.gif');
INSERT INTO `mybb_iconsVALUES (16'''images/icons/at.gif'); 

Mfg Garlant


RE: mybb_icons - Sunny Boy 13 - 15.07.2007

Danke Garlant hat perfekt funktionkiert =D