View Single Post
  #15  
Old 10-20-2010, 12:10 AM
Bdiddy
Sarnak
 
Join Date: Sep 2010
Posts: 77
Default

well im not worried about it being on the list, i just thought that is what had to happen for it show that your up and running correctly, apparently not though. All I want to do now is log in from my client, which I can't seem to do. and I have an account name and password set up in the accounts table, but i get DB error invalid password, and i've checked to make sure the password is correct. So I guess what do i have to do to get my client to talk to my server assuming my server is setup correctly. All the ports show 5998 as i'm using titanium.

here is my eqemu_config.xml file, password taken out of the database info for posting

Code:
<?xml version="1.0"?>
<server>
<world>
<shortname>Test7</shortname>
<longname>The Test7 EQ</longname>

<!-- address has to be specified for minilogin to work -->
<address>localhost</address>
<localaddress>localhost</localaddress>

<!-- Loginserver information. -->
<loginserver>
<host>localhost</host>
<port>5998</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" enable="true" mimefile="mime.types"/>
</world>

<!-- Database configuration, replaces db.ini -->
<database>
<host>localhost</host>
<port>3306</port>
<username>root</username>
<password>password</password>
<db>peq</db>
</database>
</server>
Reply With Quote