i Am trying to run a minilogin server but I keep getting an error saying
Code:
Connecting to loginserver: 127.0.0.1:5998
login server responded with fatal error
bad server name. Unknown reason
in my world.exe.
Here is my config and login
Code:
[LoginServer]
loginserver=127.0.0.1
loginserver2=newlogin1.eqemulator.net
loginport=5999
loginport2=5999
worldname=Pelican
worldaddress=127.0.0.1
locked=false
account=
password=
[WorldServer]
Defaultstatus=
Unavailzone=
[ChatChannelServer]
worldshortname=
chataddress=
chatport=
[LoginConfig]
ServerMode=StandAlone
ServerPort=5999
Code:
<?xml version="1.0"?>
<server>
<world>
<shortname>Pelican</shortname>
<longname>Pelican</longname>
<!-- address has to be specified for minilogin to work -->
<address>127.0.0.1</address>
<localaddress>127.0.0.1</localaddress>
<!-- Loginserver information. -->
<loginserver>
<host>127.0.0.1</host>
<port>5999</port>
<account></account>
<password></password>
</loginserver>
<!-- Sets the shared key used by zone/launcher to connect to world -->
<key>make up some random string of characters here</key>
<!-- Enable and set the port for the HTTP service -->
<http port="9080" enable="true" mimefile="mime.types"/>
</world>
<!-- Database configuration, replaces db.ini -->
<database>
<host>localhost</host>
<port>3306</port>
<username>root</username>
<password>pelican</password>
<db>custom</db>
</database>
</server>
I'm not quite sure what I would need to do to get rid of that problem.