• 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!

Account Manager + WebSite

picachu

Member
Joined
Dec 2, 2007
Messages
970
Reaction score
11
Hi guys.
I'm trying to use account manager + website...
(modern or gesior, the two have the same problem)

when i create an account on 1/1 (account manager), i can't enter with this account in website!!!!
and when i create account on website, i can enter in site AND ingame ! :p

then i went to phpmyadmin and saw "salt" on account table...
when i remove the value on "salt" , the account work OK to enter into website too!
how can I make account manager dont create a "salt" string?
it need to be null
ty.
 
Just concatenate the SALT on your website.

Like:

Code:
$password = $_POST['password']
$salt = 'TheSaltOfAccount'
sha1($password.$salt)

You will get the right password. :)
 
Back
Top