Closed avs-code closed 8 years ago
Please, @inguni check if this is right:
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `user`
--
CREATE TABLE IF NOT EXISTS `user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(20) CHARACTER SET utf8 NOT NULL DEFAULT '',
`passwd` varchar(40) CHARACTER SET utf8 NOT NULL DEFAULT '',
`active` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcado de datos para la tabla `config`
--
INSERT INTO `user` (`name`, `passwd`, `active`) VALUES
('admin', 'd033e22ae348aeb5660fc2140aec35850c4da997', 1);
-- --------------------------------------------------------
Avoid this step for web admins without knowledge:
Set a default user password in database: admin/admin and encourage to web admin to change the password on url/PREM/?page=users