ERROR gameserver

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
fokysss
Posts: 43
Joined: Sat Oct 09, 2010 4:25 pm

ERROR gameserver

Post by fokysss »

If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision LAST:
L2JDP Revision LAST:

Compiled with eclipse today tryed to setup ipconfig.xml!
I will copy and paste error log and my ipconfig content!

Loading GameServer Configuration Files...
[Fatal Error] ipconfig.xml:9:1: XML document structures must start and end within the same entity.
org.xml.sax.SAXParseException: XML document structures must start and end within the same entity.
at com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(DOMParser.java:249)
at com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:284)
at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:208)
at com.l2jserver.Config.load(Config.java:1114)
at com.l2jserver.gameserver.GameServer.main(GameServer.java:501)
Exception in thread "main" java.lang.Error: Failed to Load ./config/ipconfig.xml File.
at com.l2jserver.Config.load(Config.java:1162)
at com.l2jserver.gameserver.GameServer.main(GameServer.java:501)


And this is my ipconfig.xml file:

<?xml version="1.0" encoding="UTF-8"?>
<!-- Put old contents of ExternalHostname here, used by default -->
<gameserver address="46.4.0.83">
<!-- Localhost access -->
<define subnet="127.0.0.0/8" address="127.0.0.1" />
<!-- LAN's, put old contents of InternalHostname here -->
<gameserver address="127.0.0.1.">
</gameserver>
hope
Posts: 1160
Joined: Thu Aug 30, 2007 5:17 pm

Re: ERROR gameserver

Post by hope »

You have messed up the ipconfig XML replace with a new one start again
Edelvez
Posts: 173
Joined: Fri Nov 06, 2009 6:32 am
Location: Argentina

Re: ERROR gameserver

Post by Edelvez »

These repeating a configuration in ipconfig.xml ..
fokysss wrote: <?xml version="1.0" encoding="UTF-8"?>
<!-- Put old contents of ExternalHostname here, used by default -->
<gameserver address="46.4.0.83">
<!-- Localhost access -->
<define subnet="127.0.0.0/8" address="127.0.0.1" />
<!-- LAN's, put old contents of InternalHostname here -->
<gameserver address="127.0.0.1.">
</gameserver>
ipconfig should be so:

Code: Select all

 <?xml version="1.0" encoding="UTF-8" ?> - <!--  Put old contents of ExternalHostname here, used by default   --> - <gameserver address="46.4.0.83">- <!--  Localhost access   -->   <define subnet="127.0.0.0/8" address="127.0.0.1" /> - <!--  LAN's, put old contents of InternalHostname here   -->   <define subnet="10.0.0.0/8" address="10.0.0.0" />   <define subnet="172.16.0.0/19" address="172.16.0.0" />   <define subnet="192.168.0.0/16" address="192.168.0.0" />   </gameserver>
Someone once told me: "The easiest way of doing things, making them the hard way" ;)
fokysss
Posts: 43
Joined: Sat Oct 09, 2010 4:25 pm

Re: ERROR gameserver

Post by fokysss »

This is gonna drive me crazy!
Once i do so,i get mega size error logs and cant even open them!
Server is Down with ping 9999!
_DS_
L2j Veteran
L2j Veteran
Posts: 3437
Joined: Wed Apr 30, 2008 8:53 am
Location: Russia

Re: ERROR gameserver

Post by _DS_ »

fokysss wrote:<?xml version="1.0" encoding="UTF-8"?>
<!-- Put old contents of ExternalHostname here, used by default -->
<gameserver address="46.4.0.83">
<!-- Localhost access -->
<define subnet="127.0.0.0/8" address="127.0.0.1" />
<!-- LAN's, put old contents of InternalHostname here -->
<gameserver address="127.0.0.1.">
</gameserver>
You messed xml formatting - key <gameserver> opened twice.
Commiter of the shit
public static final int PI = 3.1415926535897932384626433832795;
Post Reply