• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved Gesior 'salt' problem (TFS 0.4 rev 3777)

sowber

New Member
Joined
Sep 30, 2016
Messages
35
Reaction score
0
Yo guys, i'm having some issues on gesior AAC installation, since i have the 0.4 3777 tfs rev, and my db doesn't have the 'salt' table, does anyone knows a solution? I've tried to remove 'salt' line from classes/accounts.php, the installation went good, but i get errors when i search for characters.

PS: i'm using sha1 as encrypt
 
Last edited:
Try adding the salt column to your accounts table.
Code:
ALTER TABLE `accounts` ADD `salt` varchar(32);
 
Solution
Back
Top