View Single Post
  #4  
Old 02-26-2019, 10:27 AM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,333
Default

IN your login.ini :
local_network = 192.168.0. <--- get rid of the last two numbers, but keep the period.

Then look at changes I made to the config.json (IP addys for Lan) plus changing "localhost" to 127.0.0.1

Code:
{
     "server" : {
          "chatserver" : {
               "host" : "192.168.0.99", <-----------
               "port" : "7778"
          },
          "database" : {
               "db" : "peq",
               "host" : "127.0.0.1", <-----------
               "password" : "eqemu",
               "port" : "3306",
               "username" : "root"
          },
          "mailserver" : {
               "host" : "192.168.0.99", <------------
               "port" : "7778"
          },
          "qsdatabase" : {
               "db" : "peq",
               "host" : "127.0.0.1", <-------------
               "password" : "eqemu",
               "port" : "3306",
               "username" : "root"
          },
          "webinterface" : {
               "port" : "9081"
          },
          "world" : {
               "http" : {
                    "enabled" : "true",
                    "mimefile" : "mime.types",
                    "port" : "9080"
               },
               "key" : "GcRXOhNEPGFA6rpkq2j1n4hCWST0U1c",
               "loginserver1" : {
                    "account" : "",
                    "host" : "login.eqemulator.net",
                    "legacy" : "1",
                    "password" : "",
                    "port" : "5998"
               },
               "loginserver2" : {
                    "account" : "",
                    "host" : "192.168.0.99", <-------------
                    "password" : "",
                    "port" : "5998"
               },
               "longname" : "BelvQuest",
               "shortname" : "BQ",
               "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"
               }
          }
     }
}
Reply With Quote