Ошибка после индексации БД
Добавлено: 29 авг 2017, 11:32
Код: Выбрать все
Table 'Forum.phpbb_login_attempts' doesn't exist [1146]
Solving technical tasks
http://team-servers.ru/your.forum/
Код: Выбрать все
Table 'Forum.phpbb_login_attempts' doesn't exist [1146]
Longipongeoos писал(а):Код: Выбрать все
Table 'Forum.phpbb_login_attempts' doesn't exist [1146]
Код: Выбрать все
UPDATE phpbb_config SET config_value = '3.0.14' WHERE config_name = 'version';
Код: Выбрать все
CREATE TABLE `phpbb_login_attempts` (
`attempt_ip` varchar(40) collate utf8_bin NOT NULL default '',
`attempt_browser` varchar(150) collate utf8_bin NOT NULL default '',
`attempt_forwarded_for` varchar(255) collate utf8_bin NOT NULL default '',
`attempt_time` int(11) unsigned NOT NULL default '0',
`user_id` mediumint(8) unsigned NOT NULL default '0',
`username` varchar(255) collate utf8_bin NOT NULL default '0',
`username_clean` varchar(255) collate utf8_bin NOT NULL default '0',
KEY `att_ip` (`attempt_ip`,`attempt_time`),
KEY `att_for` (`attempt_forwarded_for`,`attempt_time`),
KEY `att_time` (`attempt_time`),
KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;