PDA

View Full Version : 1017 woes: I think I've done EVERYTHING right.


rephlex
06-03-2003, 03:04 AM
Well, I've done everything mentioned in this forum for 1017.. time to post my own thread about it and see if I can get my specific case fixed.

db.ini
[Database]
host=localhost
user=rephlex
password=**
database=eq
compression=off

LoginServer.ini
[LoginServer]
loginserver=localhost
loginserver2=localhost
loginport=5999
loginport2=5999
worldname=tyrone
worldaddress=localhost
locked=false
account=
password=

[WorldServer]
Defaultstatus=
Unavailzone=

[LoginConfig]
ServerMode=Standalone
ServerPort=5999
UplinkAddress=
UplinkPort=
UplinkAccount=
UplinkPassword=


MiniLoginAccounts.ini
localhost adaonn ***

World.exe
Using database 'eq' at localhost
[Status] CURRENT_WORLD_VERSION:EQEMu 0.4.3
[Error] CURRENT_WORLD_VERSION:EQEMu 0.4.3
Loading Variables, zone names & items...
EMuShareMem.dll loaded.
Loading items from database...
...done.
LoginServer.ini read.
Loading guild ranks...done.
Loading EQ time of day..."./eqtime.cfg" is NOT a vaild EQTime file. File version
is 0; EQTime version is 1000 - failed.
Deleted 0 stale player corpses from database.
HELP I WORK IN THE EQEMU SWEATSHOP YOUR MY ONLY HOPE
TCP listening on: localhost:9000
World server listening on: localhost:9000
Connected to LoginServer: localhost:5999
4617 New TCP connection: 127.0.0.1:3888
New zoneserver: #1 127.0.0.1:3888
4647 New TCP connection: 127.0.0.1:3889
4647 New TCP connection: 127.0.0.1:3890
New zoneserver: #2 127.0.0.1:3890
New zoneserver: #3 127.0.0.1:3889
Zoneserver SetConnectInfo: 127.0.0.1:3888: 127.0.0.1:7999
4687 New TCP connection: 127.0.0.1:3891
Zoneserver SetConnectInfo: 127.0.0.1:3889: 127.0.0.1:7997
Zoneserver SetConnectInfo: 127.0.0.1:3890: 127.0.0.1:7998
4697 New TCP connection: 127.0.0.1:3892
New zoneserver: #4 127.0.0.1:3891
New zoneserver: #5 127.0.0.1:3892
Zoneserver SetConnectInfo: 127.0.0.1:3891: 127.0.0.1:7995
Zoneserver SetConnectInfo: 127.0.0.1:3892: 127.0.0.1:7996

MiniLogin.exe
LoginServer.ini read.
MiniLoginAccounts.ini read.
Server mode: Standalone
Login server listening on port:5999
New TCP connection: 127.0.0.1:3882

Zone.exe (I've tried 192.168.1.103, localhost, 127.0.0.1, and even my external IP address.)
Using database 'eq' at localhost
[Status] CURRENT_ZONE_VERSION: EQEMu 0.4.3
[Error] CURRENT_ZONE_VERSION: EQEMu 0.4.3
[Status] Loading Variables
[Status] Loading zone names
[Status] Loading items
EMuShareMem.dll loaded.
[Status] Loading npcs
Loading NPCTypes from database...
[Status] Loading npc faction lists
Loading NPC Faction Lists from database...
[Status] Loading loot tables
[Status] Loading doors
Loading Doors from database...
[Status] Loading guilds
[Status] Loading factions
[Status] Loading corpse timers
[Status] Loading what ever is left
[Status] Entering sleep mode
Connected to worldserver: 127.0.0.1:9000

eqhost.txt
[Registration Servers]
{
"localhost:5999"
}
[Login Servers]
{
"localhost:5999"
}


I've run the patcher, ran Everquest.exe, ran the patcher again and still it doesn't work. Anyone have any ideas?

a_Guest03
06-03-2003, 03:08 AM
Patcher gives no error besides "Missing discard.log"?

rephlex
06-03-2003, 03:41 AM
Patcher gives no error besides "Missing discard.log"?

correct.

a_Guest03
06-03-2003, 05:02 AM
You must have patched correctly, so this is likely a connection problem of some kind. I can't spot the error, however.

Bigpull
06-03-2003, 05:13 AM
XP Firewall

rephlex
06-03-2003, 05:48 AM
No firewall.

Solesin
06-14-2003, 06:30 AM
I've got the same issue as well, with no firewalls running. Tried making all references to localhost, 127.0.0.1, and actual IP to no avail.

Ademonde
06-14-2003, 07:20 AM
If you are running a router, they can sometimes act as a firewall. If you are running a router, you need to point all the places where it asks for your IP to your internal ips, make sure all firewalls on your computer are off, and either assign a dmz host to your internal ip or forward ports to your internal ip

DeletedUser
06-14-2003, 07:20 AM
I was getting 1017, I patched (EQlive), then EQEMu patcher, then for some reason it worked. :shock: *shrugs*

wdrng
06-14-2003, 07:37 PM
I was having the same problem, but adding each of my login accounts with the INSERT INTO command for mysql fixed it.

run mysql

use eq;

INSERT INTO account SET name='username', password='userpassword', status=200;

ie. if your user name is bob and your password is here, and you want to be a server OP, you's type:

INSERT INTO account SET name='bob', password='here', status=200;

that fixed it for me.