These are my eqemu_config.xml and loginserver.ini files. I've replaced my IP address and DB and DB passwords. Does this give a clue to anything?
<?xml version="1.0">
<server>
<world>
<shortname>minilogin</shortname>
<longname>My Minilogin</longname>
<!-- Only specify these two if you really think you need to. -->
<address>x.x.x.x</address>
<localaddress>127.0.0.1</localaddress>
<!-- Loginserver information. -->
<loginserver>
<host>x.x.x.x</host>
<port>5999</port>
<account></account>
<password></password>
</loginserver>
<!-- Sets the shared key used by zone/launcher to connect to world -->
<key>some long random string</key>
<!-- Enable and set the port for the HTTP service. -->
<http port="9080" enabled="true" mimefile="mime.types" />
</world>
<!-- Database configuration, replaces db.ini. -->
<database>
<host>localhost</host>
<port>3306</port>
<username>____</username>
<password>____</password>
<db>____</db>
</database>
</server>
loginserver.ini
###Your current configuration is as follows:
loginserver.ini:
[LoginServer]
loginserver=x.x.x.x
loginport=5999
worldname=My Minilogin
worldaddress=x.x.x.x
locked=false
account=
password=
[WorldServer]
Defaultstatus=
Unavailzone=
[ChatChannelServer]
worldshortname=
chataddress=
chatport=
[LoginConfig]
ServerMode=Minilogin
ServerPort=5999
|