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

Account Manager with sha1

Evan

A splendid one to behold
Senator
Premium User
Joined
May 6, 2009
Messages
7,018
Solutions
1
Reaction score
1,040
Location
United States
It seems that using account manager from 1/1 works perfectly fine, but when you use the account manager on your own account, it will say "Invalid Password".
I'm pretty sure this is because of the sha1 encryption. Does anyone know how I could fix this problem?
 
Have you encrypted the password in the database instead of it being '1'? Example SQL query:
Code:
UPDATE `accounts` SET `password` = SHA1('1') WHERE `name` = '1';
 
Back
Top