• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

TFS 1.0 empty database, creating account but still says incorrect account name and password.

Smiecjebany

Banned User
Joined
Jul 13, 2013
Messages
6
Reaction score
0
LyQ4zD5.png

That is what i insert, but when i try to login it says incorrect account name or password. I tried encrypting the password. Still didn't work.
The server is working without any problems
1pA877x.png


I am currently testing it on localhost
 
The passwords are stored in a hashed form (SHA1 hash) in the database. Use this query to change it:
Code:
UPDATE `accounts` SET `password`=SHA1("SUPERSTRONGSECRETPASSWORD") WHERE ID=1;
Don't forget to change the account id at the end of that query ;).
 
Back
Top