Thread: PHP error
View Single Post
NomisCZ
AlliedModders Donor
Join Date: Mar 2014
Location: Czech_Republic
Old 10-08-2018 , 10:11   Re: PHP error
Reply With Quote #5

Quote:
Originally Posted by Skadro View Post
Now i have another problem :/
I can't login as an admin user.I copied the exact username and password from the database and didn't work.

Help? Again?
You can't just copy hashed (MD5 - https://en.wikipedia.org/wiki/MD5) password from database.

Default password is 123456, documentation: https://bitbucket.org/Maverick_of_UC...n/wiki/Install - Step 6 - Configure HLX:CE

If you forgot your new password (if you changed default password), you can change it with SQL query:
PHP Code:
UPDATE `hlstats_UsersSET password=MD5('your_new_password'WHERE username 'your_username'
Or you can insert default user / password, but before delete admin user.
PHP Code:
INSERT INTO `hlstats_UsersVALUES ('admin','e10adc3949ba59abbe56e057f20f883e',100,0); 
__________________

Last edited by NomisCZ; 10-08-2018 at 10:12.
NomisCZ is offline