Error FIREAC: Deferring connection..
Savozz opened this issue · 7 comments
me too
me too 🤦♂️
I've managed to solve this, The issue is occuring because of the missing DB Table
to solve this create the fireac_banlist table using the query I've written and tested.
CREATE TABLE IF NOT EXISTS fireac_admin
(
id
int(11) NOT NULL DEFAULT 1,
identifier
longtext NOT NULL,
PRIMARY KEY (id
) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
CREATE TABLE IF NOT EXISTS fireac_banlist
(
id
int(11) NOT NULL DEFAULT 1,
STEAM
longtext NOT NULL,
DISCORD
longtext NOT NULL,
LICENSE
longtext NOT NULL,
LIVE
longtext NOT NULL,
XBL
longtext NOT NULL,
IP
longtext NOT NULL,
TOKENS
longtext NOT NULL,
BANID
longtext NOT NULL,
REASON
longtext NOT NULL,
PRIMARY KEY (id
)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
CREATE TABLE IF NOT EXISTS fireac_unban
(
id
int(11) NOT NULL DEFAULT 1,
identifier
longtext NOT NULL,
PRIMARY KEY (id
)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
CREATE TABLE IF NOT EXISTS fireac_whitelist
(
id
int(11) NOT NULL DEFAULT 1,
identifier
longtext NOT NULL,
PRIMARY KEY (id
)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
How did you add yourself to become admin. Tried putting it manually in sql but I cant seem to access admin menu
How did you add yourself to become admin. Tried putting it manually in sql but I cant seem to access admin menu
me to did u figured it out?
This bugs fixed in new version