AmirrezaJaberi / FIREAC

✅ FiveM Strongest Anticheat
GNU Affero General Public License v3.0
161 stars 52 forks source link

Error FIREAC: Deferring connection.. #106

Open Savozz opened 3 months ago

Savozz commented 3 months ago

So i setupped FIREAC to my server and when trying to join my server its showing this: image i have added the database and everything may someone help me?

johnkouk007 commented 1 month ago

me too

HSN-ALJ commented 1 month ago

me too 🤦‍♂️

HSN-ALJ commented 1 month ago

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;

HSN-ALJ commented 1 month ago

again after the last test, the data are not inserted to the tables I've created, and I have no problem for the time being but the main concern is about the administration menu, not working at all and seems like this script has alot of issues !!

image

sleepingezy commented 2 weeks ago

How did you add yourself to become admin. Tried putting it manually in sql but I cant seem to access admin menu