I am setting the combu to a new pc , and everything seems good,but
On http://localhost/combu/admin/users.php
I create 5 new users ,and I can check them on Web ,
but on Unity, when I try to Login with new user , User.Load, always get user =null,(So I try to register again ,it said",register failed: This username has already been taken")
but on another PC, I can get the user info correctly.
New PC is a HP laptop, with only one SSD,I install XAMPP on C:
I can not find other differences.
any advice??? Plz hurry up
We found a bug in Create Player action of admin console, basically it's saving the password not encrypted.
At line 41 of /admin/users.php (there should be the enclosing "}" of "else if ($newPassword != $confirmPassword)") you should replace "}" with the following lines:
unset($_REQUEST["Password"]);
$user->Password = md5($newPassword);
}
This change will be added to the next update that we're preparing with new features.
FRANCESCO CROCETTI @ SKARED CREATIONS
It works ,thanks