Screamer (02.07.2013 / 20:13)
Критика кода приветствуется
Только сразу отмечу, что обертку я полностью не допиливал и в контроллерах может встречаться использование статических классов ждона.
У меня такая ошибка кто нибудь знает как ее убрать может база есть? Я так тогда ее залью !! Unable to install module. DB Errorsoccured.Code: 1050
Message: Table 'conference_list' already exists
Statement:
CREATE TABLE `conference_list` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `type` tinyint(1) unsigned NOT NULL DEFAULT '0', `owner_id` int(11) unsigned NOT NULL, `owner_name` varchar(25) NOT NULL, `autoclean` int(10) unsigned NOT NULL DEFAULT '1', `last_clean` int(10) unsigned NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8Code: 1050
Message: Table 'conference_messages' already exists
Statement:
CREATE TABLE `conference_messages` ( `cid` int(11) unsigned NOT NULL, `uid` int(11) unsigned NOT NULL, `message` text NOT NULL, `time` int(11) unsigned NOT NULL, KEY `cid` (`cid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8Code: 1050
Message: Table 'conference_private' already exists
Statement:
CREATE TABLE `conference_private`( `uid` int(11) unsigned NOT NULL,`cid` int(11) unsigned NOT NULL, PRIMARY KEY (`uid`,`cid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8Code: 1050
Message: Table 'conference_settings' already exists
Statement:
CREATE TABLE `conference_settings` ( `key` varchar(10) NOT NULL, `val` text NOT NULL, PRIMARY KEY (`key`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;Code: 1062
Message: Duplicate entry 'cpu' for key 'PRIMARY'
Statement:
INSERT INTO `conference_settings`(`key`, `val`) VALUES ('cpu', '1'), ('autoclean', '24');