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!

[TUTORIAL] Fixing Error Code :8 [Newer Sources]

Joined
Apr 27, 2008
Messages
667
Reaction score
124
Okay so I followed a tutorial that was done by ChuTszHin (https://forum.ragezone.com/f792/solve-error-code-8-sql-1008828/)

This is not going to be a huge tutorial, I finally fixed my issue after a day or so of fiddling around with the IP's.

So the only thing you need to change to 127.0.0.1 is the following

Code:
CkHttpResponse * resp = http.SynchronousRequest ("[COLOR=#ff0000]127.0.0.1(must be 127.0.0.1)[/COLOR]", 80, false, req); 
if (! resp)
r3dError ("timeout getting lootbox db");
and the next one is

Code:
 g_api_ip->SetString("[COLOR=#ff0000]127.0.0.1[/COLOR]");

As for the rest of the server setup it will remain the same change all of the other ip addresses and be sure to have followed the IIS setup correctly.

NOTE: Some sources could be different if anything let me know if there is a difference and I'll do my best to help you out.

NOTE 2: Also something I want to mention in the newer source, ignore the WarZ folder. It doesn't exist.
What I mean is when you have "Warz/api" That's not correct, your IIS should have the wz folder and api. No data folder and they must be in the root of your iis directory. That is the correct setup for the newer sources. This is due to the way they are configured with the configuration files and the newer source bases.

SCREENSHOT
whhacker93 - [TUTORIAL] Fixing Error Code :8 [Newer Sources] - RaGEZONE Forums


I hope I was able to help you and if I did +1 :)
 
Last edited:
Back
Top