Password Yanlış Hatası!

Konu Yazar

67Anılcan67

Member
Eki
710
0
Selam,
Serveri Kurdum Tmm Güzel Çalışıyodu.DB Değiştireyim Dedim.******** DB v5 REstore Yaptım Şöle Bi Hata Aldım.Password Yanlış.

Login Server:

Kod:
[DOWNLOAD]
URL=wizgate.nefficient.co.kr
PATH=..

[ODBC]
DSN=kn_online
UID=kn_online
PWD=kn_online
TABLE=VERSION

[CONFIGURATION]
DEFAULT_PATH=C:\

[SERVER_LIST]
COUNT=2
SERVER_00=127.0.0.1
NAME_00=©Admin®
SERVER_01=kaypaklar.no-ip.biz
NAME_01=KaypaklarKO

:v:YaRdıM PleAsE:v:
 
Cevap: Password Yanlış Hatası!

Query Analayzer'e kodları uygulayacaksın ;
Kod:
CREATE PROCEDURE ACCOUNT_LOGIN
@AccountID varchar(21),
@Password varchar(13),
@nRet smallint OUTPUT
AS
delete from currentuser where straccountid = @AccountID
---Coded By Sametcan---
declare @cnt BigInt
declare @nDays smallint
select @nRet = count(straccountid) from tb_user where straccountid = @AccountID
 
if @nRet = 0
begin
insert into tb_user (straccountid, strpasswd, strSocNo, idays) values (@AccountID, @password, 1, '6')
end
select @cnt = count(straccountid) from currentuser
select @nDays = count(nDays) from PREMIUM_SERVICE where straccountid = @AccountID
if @cnt > 40 and @nDays = '0'
begin
set @nRet = 0
end
if @cnt > 40 and @nDays = null
begin
set @nRet = 0
end
 
DECLARE @Nation tinyint
SET @Nation = 0
-- tid login method by samma 2004.02.24
DECLARE @pwd varchar(13)
SET @pwd = null
SELECT @pwd = strPasswd FROM TB_USER WHERE strAccountID = @AccountID
IF @pwd IS null
BEGIN
SET @nRet = 0
RETURN
END
ELSE IF @pwd <> @Password
BEGIN
SET @nRet = 0
RETURN
END
SELECT @Nation = bNation FROM ACCOUNT_CHAR WHERE strAccountID = @AccountID
IF @@ROWCOUNT = 0
BEGIN
SET @nRet = 1
RETURN
END
BEGIN
SET @nRet = 1
RETURN
END
BEGIN
SET @nRet = @Nation+1
RETURN
END
GO
Ardından ;
Kod:
truncate table currentuser

go

truncate table deleted_userdata

go

truncate table knights

go

truncate table knights_rating

go

truncate table knights_user

go

truncate table tb_user

go

truncate table userdata

go

truncate table warehouse

go
Eğer sorun hala devam ediyorsa loginserver.exe'den kaynaklanıyor olabilir.
Değiştirip denersin..
 
Geri
Üst Alt