RetroLogi wrote:RetroLogi wrote:how many set autorestart time?
any help me?
Sadly as it hasn't been updated in over a year, i dont think its working entirely.
At least I haven't been able to get it to work past showing created accounts
RetroLogi wrote:RetroLogi wrote:how many set autorestart time?
any help me?
Story0 wrote:I dont understand this. where is the control panel? I run the lifds-cp.exe and the black box come up and is working. but where is the control panel? is it just this little black box? I thought this CP was supposed to feature a ton of usful things? its just a black cmd box
KhaimovMR wrote:Installation:
- Download self-extracting exe-file.
- Execute it and select directory, where to extract directory of CP.
- Go into extracted "lifds-cp" directory.
- Open and configure CP by editing file "lifds-cp.ini".
- Shutdown LiF server and then execute file "lifds-cp.exe" (for normal version) or "lifds-cp-bg.exe" (for the background one).
- Depending on what version you've selected you'll:
- see console window of CP, if you've choosen a normal version
- see process lifds-cp.exe in task manager (Ctrl+Shift+Esc), if you've choosen a bg-version- Now you can go in your browser to the address, that you've specified in "lifds-cp.ini". For example if i've specified an ip 192.168.100.1 and a port 8989, then i can see the panel by address http://192.168.100.1:8989. If you've specified port 80, then you can open url without it: http://192.168.100.1.
- On the authorization page enter any login and, to autorize yourself you can enter password you've specified in "lifds-cp.ini" file or the GM password from world_x.xml file if you didn't specify it in "lifds-cp.ini".
KhaimovMR wrote:Latest version isn't tested on Windows machine. If something doesn't work well just post it here - I'll try to figure out when I'd have some time.
Error 1146: Table 'lif_1.lifdcp_online_history' doesn't exist
Thril wrote:Is there any progress in here?
Or does anyone have good alternatives?
SnowSharky wrote:Thril wrote:Is there any progress in here?
Or does anyone have good alternatives?
Dont think KhaimovMR plays anymore, but he does check in every week or so still and has been slowly updating it (thank you KhaimovMR!!).
As for an admin program alternative, theres isnt a working one that i know off.
KhaimovMR wrote:Hello, guys.
Tested 0.9.12 version on a Windows machine today.
Working fine with a clean setup (wiped database).
SnowSharky, you can try two ways to fix this issue:
First way - wiping character online history:
1. Shutdown the server.
2. Turn off the lifds-cp.
3. Drop all tables that starts with "lifdcp_".
4. Start lifds-cp again.
Second way - easiest by may not help if "lifdscp_*" tables are messed up:
Check that the parameter "online-statistics" in lifds-cp.ini is set to "on".
Muphin wrote:KhaimovMR wrote:Hello, guys.
Tested 0.9.12 version on a Windows machine today.
Working fine with a clean setup (wiped database).
SnowSharky, you can try two ways to fix this issue:
First way - wiping character online history:
1. Shutdown the server.
2. Turn off the lifds-cp.
3. Drop all tables that starts with "lifdcp_".
4. Start lifds-cp again.
Second way - easiest by may not help if "lifdscp_*" tables are messed up:
Check that the parameter "online-statistics" in lifds-cp.ini is set to "on".
I am having the same issue, but none of the lifdcp_ tables are being created .. online statistics is set to ON and the CP can list users ID's ... just not showing online status
any chance i can get a SQL import file for these tables?
CREATE TABLE `lifdscp_online_character` (
`CharacterID` INT(10) UNSIGNED NOT NULL,
`LoggedInAt` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`CharacterID`)
)
COLLATE='utf8_general_ci'
ENGINE=InnoDB;
CREATE TABLE `lifdscp_online_history` (
`ID` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`CharacterID` INT(10) UNSIGNED NOT NULL,
`LoggedInAt` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`LoggedOutAt` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00',
`IsLoggedOut` TINYINT(1) NOT NULL DEFAULT '0' COMMENT '0 - still logged in, 1 - logged out',
PRIMARY KEY (`ID`),
INDEX `idx_CharacterID` (`CharacterID`),
INDEX `idx_LoggedInAt` (`LoggedInAt`),
INDEX `idx_LoggedOutAt` (`LoggedOutAt`),
INDEX `idx_IsLoggedOut` (`IsLoggedOut`)
)
COLLATE='utf8_general_ci'
ENGINE=InnoDB
AUTO_INCREMENT=184;