Need some little clarification :
dbo.LocatorStatus
- ElapseUpdateTime : What to put there, it's needed to save up.
Printable View
Need some little clarification :
dbo.LocatorStatus
- ElapseUpdateTime : What to put there, it's needed to save up.
put 30000
Thank you but is it normal I don't see a shit in the Locator window?
It seems it stops here
Code:start init locator.
MLocator create.
put this code in killers locator.ini
Code:[DB]
DNS="GunzDB"
USERNAME="sa"
PASSWORD="qwefvbnmjuyhgtfrswedfr"
[NETWORK]
IP="127.0.0.1"
PORT="8900"
[NETWORK]
IP="127.0.0.1"
PORT="8900"
[ENV]
ID="1"
LOCATOR_UID_HIGH="5"
LOCATOR_UID_LOW="0"
MAX_ELAPSED_UPDATE_SERVER_STATUS_TIME="1000"
UDP_LIVE_TIME="10000000"
MAX_FREE_RECV_COUNT_PER_LIVE_TIME="9"
BLOCK_TIME="0"
UPDATE_UDP_MANAGER_ELAPSED_TIME="3"
MARGIN_OF_ERROR_MIN="500000"
USE_COUNTRY_CODE_FILTER="no"
GMT_DIFF="-3"
ELAPSED_TIME_UPDATE_LOCATOR_LOG="3600000"
ELAPSED_TIME_UPDATE_LOCATOR_LOG="10000"
ELAPSED_TIME_UPDATE_COUNTRYCODEFILTER_LOG="10000"
UPDATE_COUNTRY_CODE="66 89 69 77 73 83 65 78 68"
TEST_SERVER="0"
Still no meesages appearing...
it takes 2 mins to appear
also post locator log
Didn't wait that long but let me wait...
---------- Post added at 08:29 AM ---------- Previous post was at 08:19 AM ----------
Here's a log
Code:start init locator.
MLocator create.
===========================Loator self dump(2009-12-26 3:22)=========================
- Server dead count list-
LiveServerCount(0) : DeadServerCount(0)
Country code3 cache hit miss count : 0
Invalid IP count : 0
Block Count : 0
Country code check count : 0
Block country code hit count : 0
========================================================================================
======================================================
Locator Status Info.
Recv UDP Manager Status Info
Size:0
Send UDP Manager Status Info
Size:0
Block UDP Manager Status Info
Size:0
======================================================
uhm delete locatorstatus table and execute this
PHP Code:USE [GunzDB]
GO
/****** Object: Table [dbo].[ServerStatus] Script Date: 12/26/2009 11:19:22 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[LocatorStatus](
[LocatorID] [int] NOT NULL,
[IP] [varchar](15) NOT NULL,
[Port] [int] NOT NULL,
[RecvCount] [int] NULL,
[SendCount] [int] NULL,
[BlockCount] [int] NULL,
[DuplicatedCount] [int] NULL,
[UpdateElapsedTime] [int] NOT NULL,
[LastUpdatedTime] [datetime] NULL,
PRIMARY KEY CLUSTERED
(
[LocatorID] ASC
)WITH (IGNORE_DUP_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
After doing what you said...
Code:start init locator.
MLocator create.
======================================================
Locator Status Info.
Recv UDP Manager Status Info
Size:0
Send UDP Manager Status Info
Size:0
Block UDP Manager Status Info
Size:0
======================================================
did u actually do the serverstatus thingy, it shld work
Mind making up a .bak file please?
---------- Post added at 08:50 AM ---------- Previous post was at 08:48 AM ----------
Ok, found it, server opened I had it to NULL.
Mine takes less than a second.
Also, avoid editing the table dbo.LocatorStatus.
Edit dbo.ServerStatus and you're done.