Quote:
Originally Posted by asthos
AtFirst:
Thanks for the very fast help. I think here is a good community in work ;)
So now this works,
as a hint:
if you want to see which statement you post in the Server press "F1".
So i can see that i type the right commands.
but if i choose the Server, i get the following Error:
"Your ID or password is incorrect. Remember: passwords are case sensitive"
Which password is here incorrect? Because i used the same steps in the tutorial.
Edit:
The Post at: [Only registered and activated users can see links. Click Here To Register...]didn't help me
for one try i deactivated my firewall and the problem is still alive.
In the DB it is the following entry in the dbo.account:
1 Atif ecfade2836414c54b8289c496820fe10 atif@localhost mohcen213 0 127.0.0.1 1 1 0 2017-10-20 1 2017-10-20 18:56:17.000 2017-10-20 18:56:21.000 2017-10-20 18:56:30.000 2017-10-20 18:56:33.000 rappelz rappelz 0
|
So the guide states this.
Quote:
PHP Code:
INSERT INTO [Auth].[dbo].[Account] ([account_id], [account], [password], [email], [password2], [block], [IP_user], [last_login_server_idx], [Admin], [point], [datePassword], [pk_], [creationDate_], [updateDate_], [creatorId_], [updatorId_], [portId_], [type_], [accessDate_]) VALUES ('3', 'Atif', 'ecfade2836414c54b8289c496820fe10', 'atif@localhost', 'mohcen213', '0', '127.0.0.1', '1', '1', '0', '2017-10-20', '1', '2017-10-20 18:56:17.000', '2017-10-20 18:56:21.000', '2017-10-20 18:56:30.000', '2017-10-20 18:56:33.000', 'rappelz', 'rappelz', '0');
change the username and pass plz.
|
So if you were following the guide you should have a different user and pass in your account table.
Yet your user is the same and the password is most certainly the same.
So do you know what the password in the guide had for salt? Because if your salt in your auth .opt does not match the salt that the password was made with even if you know what the password was supposed to be with the wrong salt it is completely different.
So I would start by 1. changing the user name.
2. Read your auth.opt and find out what your salt is
3. Go to the md5 site for md5 hashing passwords and put in what your salt is and what you want for a password like the following.
[Only registered and activated users can see links. Click Here To Register...]
Jose finds out his salt is 2011
He wants a password that is "password"
He goes to miracle salad md5 generating site and enters "2011password" into the box
He presses the generate button and makes a password that is md5 hashed with his salt and copies that into his database password column.
He now hopes people understand better how to create md5 passwords for Rappelz accounts.