LogT
|
Last Activity: 07/29/2015 19:58
Mentions
| 11/08/2016 |
| 14:09 - [ADM]KEFARET mentioned LogT in post Weird Errors in my logs ...ount details, block it if required
update Users_Master set TryCounter acccounter,BlockEndDate blockDate where UserID userid
end
end
end
-- log the login details LogType = 0 for login (1 for logout))
exec usp_Insert_LoginLog_E sEsSiOnID, UserUID, userip, LoginTime, 0, result
-- for all errors return 'account restricted' msg
-- (don't g... |
| 10/09/2016 |
| 02:42 - ...R @Status = 16 OR @Status = 32 OR @Status = 48 OR @Status = 64 OR @Status = 80 )
BEGIN
EXEC usp_Insert_LoginLog_E @SessionID=@SessionID, @UserUID=@UserUID, @UserIP=@UserIP, @LogType=0, @LogTime=@LoginTime, @LoginType=@LoginType
..
END
Here is where it EXECute the login after all previous checks. Let's edit it for add the check about the UserIP:
--... |
| 03/10/2016 |
| 12:56 - SempeR93 mentioned LogT in post ep 6 error. ...Logout_R]
/*
Created by humanws, 2005-10-18
???? ?? ??
*/
UserUID int,
sEsSiOnID bigint, LogoutType smallint = 0, errtype int = 0
AS
SET NOCOUNT ON
DECLARE LogTime datetime
DECLARE sql nvarchar(4000)
DECLARE yyyy varchar(4)
DECLARE @mm varchar(2)
DECLARE @dd varchar(2)
DECLARE LogType bit -- Login:0, Logout:1
SET LogType = ... |





