View Single Post
  #1  
Old 02-17-2010, 02:09 AM
Entamental
Fire Beetle
 
Join Date: Nov 2008
Location: California
Posts: 13
Default EQEmuLoginServer.exe - Application Error

Followed the guide on:
http://www.eqemulator.org/forums/showthread.php?t=29043

by the word. Now, when I start up the startup.bat, I get:
"EQEmuLoginServer.exe - Application Error:
The application was unable to start correctly (0x000007b). Click OK to close the application."

Everything else works fine, just errors on the login server, and then I get a ton of:
"Could not connect to login server: TCPConnection::Connect(): connect() failed. Error: 10061"




My eqemu_config.xml:
Code:
<?xml version="1.0">
<server>
	<world>
		<shortname>twinkiefactory</shortname>
		<longname>twinkiefactory</longname>

		<!-- Only specify these two if you really think you need to. (read: You don't) -->
		<address>127.0.0.1</address>
		<localaddress>127.0.0.1</localaddress>

		<!-- Loginserver information. Defaults shown -->
		<loginserver>
			<host>192.168.1.47</host>
			<port>5998</port>
			<account></account>
			<password></password>
		</loginserver>
		<!-- Sets the ip/port for the tcp connections. Both zones and console (if enabled). Defaults are shown -->
		<tcp ip="localhost" port="9000" telnet="disable"/>

		<!-- Sets the shared key used by zone/launcher to connect to world -->
		<key>kiw9083wdfgesiwud</key>

		<!-- Enable and set the port for the HTTP service. Defaults are shown -->
		<http port="9080" enabled="false" mimefile="mime.types" />
	</world>
	<database>
		<host>localhost</host>
		<port>3306</port>
		<username>root</username>
		<password>eq</password>
		<db>peq</db>
	</database>
</server>
my eqemulogin:
Code:
Port=5998
DumpPacketsIn=true
DumpPacketsOut=true
Trace=true
DatabaseServerName=localhost
DatabaseCatalogName=PEQLoginDB
DatabaseUserName=root
DatabaseUserPassword=eq
OPCodePathAndFileName=login_opcodes.conf
AllowUnregistered=true
my startup.bat
Code:
@echo off
start EQEmuLoginServer.exe
pause
start world
echo waiting for the world to finish before starting zone...
pause
start eqlaunch zone
Reply With Quote