тоже заметил это. не пускает по обычному логину если поменять строчку в config.pl
$conf{secretkey}="test12345678901234567890";
она должна быть такой. Иначе не пустит
так и есть всё в файле abills.sql который лежит в папке usr/abills
INSERT INTO admins (id, name, regdate, password, gid, aid, disable, phone, web_options) VALUES ('abills','abills','2005-06-16', ENCODE('abills', 'test12345678901234567890'), 0, 1,0,'', '');
INSERT INTO admins (id, name, regdate, password, gid, aid, disable, phone, web_options) VALUES ('system','System user','2005-07-07', ENCODE('test', 'test12345678901234567890'), 0, 2, 0,'', '');
a в файле config pl
$conf{dbhost}='localhost';
$conf{dbname}='abills';
$conf{dbuser}='abills';
$conf{dbpasswd}='SuHmdLCR8vBMbZnF';
$conf{dbtype}='mysql';
#For MySQL 5 and highter (cp1251, utf8)
$conf{dbcharset}='cp1251';
$conf{default_language}='russian';
$conf{periodic_check}='yes';
$conf{ERROR_ALIVE_COUNT} = 10;
$conf{secretkey}="test12345678901234567890";$conf{RADIUS2}=1;
но при создании базы вылазит ошибка
Ошибка
SQL-запрос:
CREATE TABLE `admin_actions` (
`actions` varchar( 100 ) NOT NULL default '',
`datetime` datetime NOT NULL default '0000-00-00 00:00:00',
`ip` int( 11 ) unsigned NOT NULL default '0',
`uid` int( 11 ) unsigned NOT NULL default '0',
`aid` smallint( 6 ) unsigned NOT NULL default '0',
`id` int( 11 ) unsigned NOT NULL AUTO_INCREMENT ,
`module` varchar( 10 ) NOT NULL default '',
`action_type` TINYINT( 2 ) NOT NULL default '0',
PRIMARY KEY ( `id` ) ,
UNIQUE KEY `id` ( `id` ) ,
KEY `uid` ( `uid` )
) COMMENT = "Users changes log";
Ответ MySQL: Документация
#1050 - Table 'admin_actions' already exists