
Originally Posted by
lpaulor
I used the LUG server you provided earlier and copied the .data files from the server side, but the error persists when I try to login.
if your problem is "your client is out of date" or something similar, take a look at your gshopsev.data files (gshopsev.data, gshopsev1.data and gshopsev2.data ) from your server if it's the same gshop file as the one in your client (gshop.data, gshop1.data and gshop2.data ).
if not then go ahead and open your gshop files on an editor and save them as a gshopsev file.

if this is not the case however, assuming you're running into Server Network errors when logging in,
be sure to add this to your host file located at /etc
Code:
127.0.0.1 dbserver
127.0.0.1 database
127.0.0.1 auth
127.0.0.1 audb
127.0.0.1 Manager
127.0.0.1 aumanager
127.0.0.1 providerserver7
127.0.0.1 providerserver8
127.0.0.1 providerserver9
127.0.0.1 link1
127.0.0.1 link2
127.0.0.1 link3
127.0.0.1 link4
127.0.0.1 game1
127.0.0.1 game2
127.0.0.1 game3
127.0.0.1 game4
127.0.0.1 delivery
127.0.0.1 gdelivery
127.0.0.1 backup
127.0.0.1 gmserver
127.0.0.1 nfsroot
127.0.0.1 gamedbserver
127.0.0.1 GameDB
127.0.0.1 GameDBClient
127.0.0.1 backup
127.0.0.1 gmserver.local.domain gmserver
127.0.0.1 mono
if it's not working still and you're still getting the error, be sure to install this thing
Code:
apt-get install libxml2:i386
if you're running into an error installing libxml2:i386, be sure to use the following commands:
Code:
dpkg --add-architecture i386
apt-get update
if you're having an issue with your auth, assuming this is one of your problem you should install java on your machine. I personally use zulu's jdk build for this since it's much more convenient to do. to do this, simply download this .deb file somewhere on your device.
https://cdn.azul.com/zulu/bin/zulu6....inux_amd64.deb
you can do this simply by doing
Code:
wget https://cdn.azul.com/zulu/bin/zulu6.22.0.3-jdk6.0.119-linux_amd64.deb
to install it use
Code:
sudo apt install ./.zulu6.22.0.3-jdk6.0.119-linux_amd64.deb
be sure to fix your auth start code by adding the location of your java installation which is usually at
Code:
/usr/lib/jvm/zulu-6-amd64/bin/java
I hope one of these info helped you.