Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[HELP]Account name or password do not match

Banned
Banned
Joined
May 7, 2019
Messages
130
Reaction score
44
I am using SQL server 2017, When I am trying to login on my CABAL CLIENT it says that my Account and password do not match. I am pretty sure that my settings are all correct.


Does someone experience the same problem?

How did you fix the issue?


I_SCAM_PEOPLE - [HELP]Account name or password do not match - RaGEZONE Forums


Fixed
 
Last edited by a moderator:
RaGEZONE VIP
[VIP] Member
Joined
Oct 10, 2019
Messages
198
Reaction score
454
1. Assumingly you restored all database, go to:Account -> Tables -> dbo.cabal_auth_table -> right-click it and select "Design" -> go to password section and change it from: var(50) to var(256) -> click "Save" in the tools menu line.
2. Go to Account -> Programabillity -> Stored Procedures -> dbo.cabal_tool_registerAccount and change all password var(XX) to var(256) -> click run and then close it.
3. Go to Account -> Programabillity -> Stored Procedures -> dbo.cabal_tool_registerAccount_web and change all password var(XX) to var(256) -> click run and then close it.

Then change/update your password.
 
Upvote 0
Banned
Banned
Joined
May 7, 2019
Messages
130
Reaction score
44
Thanks everyone. Let me try now.



Hello. I tried but still the same result. "Account name or Password do not match".

Any other solution?



I tried this but still does not fix my issue?

Any idea?



1. Assumingly you restored all database, go to:Account -> Tables -> dbo.cabal_auth_table -> right-click it and select "Design" -> go to password section and change it from: var(50) to var(256) -> click "Save" in the tools menu line.
2. Go to Account -> Programabillity -> Stored Procedures -> dbo.cabal_tool_registerAccount and change all password var(XX) to var(256) -> click run and then close it.
3. Go to Account -> Programabillity -> Stored Procedures -> dbo.cabal_tool_registerAccount_web and change all password var(XX) to var(256) -> click run and then close it.

Then change/update your password.


I tried this but still does not fix my issue?

Any idea?
 
Upvote 0
Joined
Oct 10, 2007
Messages
1,772
Reaction score
187
Thanks everyone. Let me try now.



Hello. I tried but still the same result. "Account name or Password do not match".

Any other solution?



I tried this but still does not fix my issue?

Any idea?






I tried this but still does not fix my issue?

Any idea?

have you tried with varchar Max and varbinary max?

query in account and write this select name, compatibility_jewel from sys.databases save and run this other query

 
Upvote 0
Banned
Banned
Joined
May 7, 2019
Messages
130
Reaction score
44
have you tried with varchar Max and varbinary max?

query in account and write this select name, compatibility_jewel from sys.databases save and run this other query




I tried and still does not help..

BTW, Just to clear things out. I am having trouble on login on Cabal Client and not on Website.



Check this screenshot




Im sure that the client is connecting on my server 100%.
 
Upvote 0
RaGEZONE VIP
[VIP] Member
Joined
Oct 10, 2019
Messages
198
Reaction score
454
I tried and still does not help..

BTW, Just to clear things out. I am having trouble on login on Cabal Client and not on Website.



Check this screenshot




Im sure that the client is connecting on my server 100%.
After applying the settings suggested above, you definitely need to change the password (use the Bega Admin Tool for example)
 
Upvote 0
RaGEZONE VIP
[VIP] Member
Joined
Oct 10, 2019
Messages
198
Reaction score
454
sir,how to set a account as gm?
Set [Nation]=3 in [Server01].[dbo].[cabal_character_table] .Use Bega admin tool or TDP tool or sql script:
Code:
update [Server01].[dbo].[cabal_character_table]
set [Nation]=3
where [CharacterIdx]='[COLOR=#ff0000]yourCharID[/COLOR]'
or
Code:
update [Server01].[dbo].[cabal_character_table]
set [Nation]=3
where [Name]='[COLOR=#FF0000]yourCharName[/COLOR]'
 
Upvote 0
Junior Spellweaver
Joined
Jul 13, 2013
Messages
139
Reaction score
1
Set [Nation]=3 in [Server01].[dbo].[cabal_character_table] .Use Bega admin tool or TDP tool or sql script:
Code:
update [Server01].[dbo].[cabal_character_table]
set [Nation]=3
where [CharacterIdx]='[COLOR=#ff0000]yourCharID[/COLOR]'
or
Code:
update [Server01].[dbo].[cabal_character_table]
set [Nation]=3
where [Name]='[COLOR=#FF0000]yourCharName[/COLOR]'

thanks!
 
Upvote 0
Back
Top