Jump to content
  • 0

Mangos zero account creation


Malibucola

Question

Dear Community,

Since a couple of days im trying to get account registration via php working. When ever i create an account via my php script the account get created but i can't login with the credentials. It gives me an error that username and/or password are incorrect. 

Has anyone else encountered this if so how did you fix that? I can see the accounts appear in the 'account' table :)

If you need any further info please ask. 

 

Regards,

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

16 minutes ago, Talendrys said:

Which algorithm do you use to generate the password ?

Tal'

I'm using sha1 to generate the password]

 

 

EDIT: i have fixed it. Problem was that i didn't hash username + password, only password. Now im hashing them both like : 

function encryptpw($user, $pass) {
    $user = strtoupper($user);
    $pass = strtoupper($user);
    return sha1($user.':'.$pass);
}
encryptpw($username, $_POST['pass']);


Now i'm able to login :-)

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use