• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Windows Faulting Application

x1nject

New Member
Joined
Apr 24, 2010
Messages
118
Reaction score
0
Hello OTland, My OT is randomly crashing and i dont know why.
Im getting these errors in Event Viewer

Code:
Faulting application TheForgottenServer.exe, version 0.3.6.3293, time stamp 0x4ba8246c, faulting module TheForgottenServer.exe, version 0.3.6.3293, time stamp 0x4ba8246c, exception code 0xc0000005, fault offset 0x00576d44, process id 0xe9c, application start time 0x01cae3691c6f2e00.

It randomly crashes and i dont know why :'( If anyone can help please do, I would use Linux but i dont know how to make Linux run .exe files to start the server.
 
Linux doesn't run an .EXE, you compile your server and it will automatically make a file called "serverdistro", in my case "theforgottenserver", so you just type: ./theforgottenserver

I recommend you to use Linux.
 
@up can you please explain to me how to compile the server, ive already got LAMP etc installed i just dont know how to run the server.
 
Here you go.
stian said:
sudo apt-get install subversion autoconf build-essential pkg-config libboost-dev libgmp3-dev libxml2-dev liblua5.1-0-dev libmysqlclient-dev
svn co http://linktoyourserversources/
cd foldername<--change that
./autogen.sh
./configure --enable-mysql
make -j 2


If you use 0.4 add "libcrypto++-dev ccache" to the list. And instead of "make -j 2" run "./build.sh"


apt-get install lighttpd php5-cgi mysql-server
apt-get install phpmyadmin
lighty-enable-mod fastcgi
service lighttpd restart x
 
Back
Top