View Single Post
  #4  
Old 11-02-2018, 12:31 PM
Asylum
Sarnak
 
Join Date: Jun 2013
Posts: 81
Default

Hello everyone, back from a long break and want to continue to develop my server that began back in 2013, last modified in 2017. I reinstalled the software using Akka's newest autoinstaller (WAAAAY better than the circa 2016-17 version, nice work!), and easier than the old manual way. I can log in just fine, create content, et cetera. Others are having an issue logging into the server. It appears on the server list "The Fallen Empire EQEmuServer" but testing has shown no one else can log in except me locally. Testing was done with both Titanium and RoF2 clients. Perhaps there is some small thing I overlooked in the eqemu_config.json or login.ini files (both posted below for critique).

eqemu_config.json

{
"server" : {
"chatserver" : {
"host" : "",
"port" : "7778"
},
"database" : {
"db" : "peq",
"host" : "localhost",
"password" : "**********",
"port" : "3306",
"username" : "root"
},
"mailserver" : {
"host" : "",
"port" : "7778"
},
"qsdatabase" : {
"db" : "peq",
"host" : "localhost",
"password" : "**********",
"port" : "3306",
"username" : "root"
},
"webinterface" : {
"port" : "9081"
},
"world" : {
"http" : {
"enabled" : "true",
"mimefile" : "mime.types",
"port" : "9080"
},
"key" : "*************************",
"loginserver1" : {
"account" : "",
"host" : "login.eqemulator.net",
"legacy" : "1",
"password" : "",
"port" : "5998"
},
"loginserver2" : {
"account" : "",
"host" : "192.168.0.10",
"password" : "",
"port" : "5998"
},
"longname" : "The Fallen Empire EQEmuServer",
"shortname" : "The Fallen Empire",
"tcp" : {
"ip" : "127.0.0.1",
"port" : "9001"
},
"telnet" : {
"enabled" : "true",
"ip" : "0.0.0.0",
"port" : "9000"
}
},
"zones" : {
"defaultstatus" : "0",
"ports" : {
"high" : "7400",
"low" : "7000"
}
}
}
}


login.ini

[database]
host = localhost
port = 3306
db = peq
user = root
password = *********
subsystem = MySQL

[options]
unregistered_allowed = TRUE
reject_duplicate_servers = FALSE
trace = TRUE
world_trace = FALSE #<-- is this the issue???
dump_packets_in = FALSE
dump_packets_out = FALSE
listen_port = 5998
local_network = 192.168.0.10
auto_create_accounts = TRUE

[security]
plugin = EQEmuAuthCrypto
mode = 5

[Titanium]
port = 5998
opcodes = login_opcodes.conf

[SoD]
port = 5999
opcodes = login_opcodes_sod.conf

[schema]
account_table = loginserver_server_accounts
world_registration_table = loginserver_world_server_registration
world_admin_registration_table = loginserver_server_admin_registration
world_server_type_table = loginserver_server_list_type
Reply With Quote