Ich hoffe Du hast richtig gesucht!
Fraglich ist, warum diese Tabellen weg sind!
Hast Du schonmal was gelöscht?
Theoretisch müsstest Du diese Tabellen wieder erstellen!
Dazu folgendes in PhpMyAdmin ausführen!
Ich habe jetzt als Prefix ic1 genutzt, bitte prüfen ob Du das auch so verwendest!
CREATE TABLE IF NOT EXISTS `ic1_modulerights` (
`uid` mediumint(9) NOT NULL default '0',
`mid` mediumint(9) NOT NULL default '0',
PRIMARY KEY (`uid`,`mid`)
) TYPE=MyISAM COMMENT='powered by ilch.de';
CREATE TABLE IF NOT EXISTS `ic1_modules` (
`id` mediumint(8) unsigned NOT NULL auto_increment,
`url` varchar(20) NOT NULL default '',
`name` varchar(50) NOT NULL default '',
`gshow` tinyint(1) NOT NULL default '0',
`ashow` tinyint(1) NOT NULL default '0',
`fright` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`id`)
) TYPE=MyISAM COMMENT='powered by ilch.de';
INSERT INTO `ic1_modules` (`id`,`url`,`name`,`gshow`,`ashow`,`fright`) VALUES (1, 'gallery', 'Gallery', 1, 0, 1);
INSERT INTO `ic1_modules` (`id`,`url`,`name`,`gshow`,`ashow`,`fright`) VALUES (2, 'news', 'News', 1, 0, 1);
INSERT INTO `ic1_modules` (`id`,`url`,`name`,`gshow`,`ashow`,`fright`) VALUES (3, 'groups', 'Gruppen', 1, 0, 1);
INSERT INTO `ic1_modules` (`id`,`url`,`name`,`gshow`,`ashow`,`fright`) VALUES (4, 'rules', 'Regeln', 1, 0, 1);
INSERT INTO `ic1_modules` (`id`,`url`,`name`,`gshow`,`ashow`,`fright`) VALUES (5, 'awards', 'Awards', 1, 0, 1);
INSERT INTO `ic1_modules` (`id`,`url`,`name`,`gshow`,`ashow`,`fright`) VALUES (6, 'forum', 'Forum', 1, 0, 1);
INSERT INTO `ic1_modules` (`id`,`url`,`name`,`gshow`,`ashow`,`fright`) VALUES (7, 'archiv-downloads', 'Downloads', 1, 0, 1);
INSERT INTO `ic1_modules` (`id`,`url`,`name`,`gshow`,`ashow`,`fright`) VALUES (8, 'kalender', 'Kalender', 1, 0, 1);
INSERT INTO `ic1_modules` (`id`,`url`,`name`,`gshow`,`ashow`,`fright`) VALUES (9, 'wars', 'Wars', 1, 0, 1);
INSERT INTO `ic1_modules` (`id`,`url`,`name`,`gshow`,`ashow`,`fright`) VALUES (10, 'kasse', 'Kasse', 1, 0, 1);
INSERT INTO `ic1_modules` (`id`,`url`,`name`,`gshow`,`ashow`,`fright`) VALUES (11, 'gbook', 'Gbook', 1, 0, 1);
INSERT INTO `ic1_modules` (`id`,`url`,`name`,`gshow`,`ashow`,`fright`) VALUES (12, 'awaycal', 'Awaycal', 0, 0, 1);
Zuletzt modifiziert von Lord|Schirmer am 15.07.2010 - 18:45:43