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 starting server.exe

Newbie Spellweaver
Joined
Jun 20, 2008
Messages
29
Reaction score
0
Does anyone know what causes this error? and what is the solution to it!

detetive - Error starting server.exe - RaGEZONE Forums



It happens every time I try to run the server.exe

all other executables in the same folder only perform regular server that the error!
 
Custom Title Activated
Loyal Member
Joined
Jan 28, 2009
Messages
1,320
Reaction score
616
What is "Saint.exe"? And why it's crashing server?
 
Custom Title Activated
Loyal Member
Joined
May 26, 2007
Messages
5,545
Reaction score
1,315
The error message is caused by the debug libraries of Visual C++. Because the SQL and Clan libraries are debug versions and you are running on a development machine, not a server, it believes you have the source code for those files, and is suggesting you look at the source to correct the errors it has caught.

They may not even break the server if it was running on standard release C++ libraries, but the debug ones will catch memory leaks (which PT is riddled with) and such.

Don't install Visual Studio on the machine you run your server from. By all means, do allocate OllyDbg as your JIT debugger, but you should also be aware that that will also freeze your server and enter the source where no JIT Debugger would just close it down so the auto-restarter could fire it up again.

The advantage is that with Olly, at least you could see the point in the code which is causing the crash.
 
Back
Top