Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Error in One Click installer v15.

Newbie Spellweaver
Joined
Dec 8, 2023
Messages
20
Reaction score
1
Hi, there's a database error occurying with me, before it didn't have any kind of error, would be appreciated if someone could help me solve this!


ERROR:
Archive: Data.zip
End-of-central-directory signature not found. Either this file is not
a zipfile, or it constitutes one disk of a multi-part archive. In the
latter case the central directory and zipfile comment will be found on
the last disk(s) of this archive.
unzip: cannot find zipfile directory in one of Data.zip or
Data.zip.zip, and cannot find Data.zip.ZIP, period.



unzip: cannot find zipfile directory in one of server.zip or
server.zip.zip, and cannot find server.zip.ZIP, period.
sed: can't read GatewayServer/setup.ini: No such file or directory
sed: can't read MissionServer/MissionServer: No such file or directory
sed: can't read WorldServer/WorldServer: No such file or directory
sed: can't read ZoneServer/ZoneServer: No such file or directory
 
Junior Spellweaver
Joined
May 19, 2014
Messages
188
Reaction score
29
im curious what are you doing before this , are you reinstalling or what ?
 
Newbie Spellweaver
Joined
Dec 8, 2023
Messages
20
Reaction score
1
im curious what are you doing before this , are you reinstalling or what ?
I've already attempted to reinstall and experimented with different Debian versions (11.0, 11.5, 11.8). I followed the step-by-step instructions from Yokohiro video, but the issue persists. It didn't occur before...
 
Junior Spellweaver
Joined
May 19, 2014
Messages
188
Reaction score
29
I've already attempted to reinstall and experimented with different Debian versions (11.0, 11.5, 11.8). I followed the step-by-step instructions from Yokohiro video, but the issue persists. It didn't occur before...
i mean like it works before , why you install it again if it already works ?
 
Newbie Spellweaver
Top Poster Of Month
Joined
Apr 24, 2020
Messages
83
Reaction score
0
We've encountered that problem as well.
 
Newbie Spellweaver
Top Poster Of Month
Joined
Apr 24, 2020
Messages
83
Reaction score
0
I'm glad is not just me stuck in this problem.. šŸ˜‚šŸ˜‚
I tried reinstalling it many times and yes we still have the same problem. The file is missing. and unable to start the server. We have tried with other VPS and it is the same.
 
Newbie Spellweaver
Joined
Apr 26, 2019
Messages
26
Reaction score
4
if you use v15
Download the missing files here

Here's how you download the missing files
# xiaoguai475 - 015.001.01.16
# config files
MAINCONFIG=" "

# subservers
SUBSERVERSID=" "

# Data folder
DATAFOLDER=" "

# SQL folder
SQLFILES=" "
 
Newbie Spellweaver
Top Poster Of Month
Joined
Apr 24, 2020
Messages
83
Reaction score
0
if you use v15
Download the missing files here

Here's how you download the missing files
I downloaded the file you provided, extracted it and copied it to the server to replace the missing file. Then we try to start the server as in the picture, it is not found and cannot be started.
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Apr 26, 2019
Messages
26
Reaction score
4
I downloaded the file you provided, extracted it and copied it to the server to replace the missing file. Then we try to start the server as in the picture, it is not found and cannot be started.
you need to add chmod 777 * on start

like this
Code:
cd /root/hxsy/TicketServer/
chmod 777 *
./TicketServer &
sleep 5
cd /root/hxsy/GatewayServer/
chmod 777 *
./GatewayServer &
sleep 5
cd /root/hxsy/LoginServer/
chmod 777 *
./LoginServer &
sleep 5
cd /root/hxsy/MissionServer/
chmod 777 *
./MissionServer &
sleep 5
cd /root/hxsy/WorldServer/
chmod 777 *
./WorldServer &
sleep 5
cd /root/hxsy/ZoneServer/
chmod 777 *
./ZoneServer &
 
Newbie Spellweaver
Top Poster Of Month
Joined
Apr 24, 2020
Messages
83
Reaction score
0
you need to add chmod 777 * on start

like this
Code:
cd /root/hxsy/TicketServer/
chmod 777 *
./TicketServer &
sleep 5
cd /root/hxsy/GatewayServer/
chmod 777 *
./GatewayServer &
sleep 5
cd /root/hxsy/LoginServer/
chmod 777 *
./LoginServer &
sleep 5
cd /root/hxsy/MissionServer/
chmod 777 *
./MissionServer &
sleep 5
cd /root/hxsy/WorldServer/
chmod 777 *
./WorldServer &
sleep 5
cd /root/hxsy/ZoneServer/
chmod 777 *
./ZoneServer &
I tried loading the missing files. Run the command and scroll through the topics, then the command seems to run but still gives an error.
cd /root/hxsy/TicketServer/
chmod 777 *
./TicketServer &
sleep 5
 
Junior Spellweaver
Joined
May 19, 2014
Messages
188
Reaction score
29
i just found out when installing the one click yesterday
you also need to patch the server file's ip manually since the one click still bugged
 
Back
Top