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!

Apache Problem in Ancient Gods

Joined
Mar 14, 2010
Messages
504
Reaction score
27
The Title refers to this Post http://forum.ragezone.com/f857/release-ancient-gods-flash-webgame-1103146/, i follow all instruction and the .bat code is this <code> Echo OFF

Code:
TITLE Running Ancient Gods Server

echo "Checking for running applications and killing if they are"
ping 127.0.0.1 -n 2 > nul
taskkill /F /IM httpd.exe /T
taskkill /F /IM mysqld-nt.exe /T
taskkill /F /IM werl.exe /T
taskkill /F /IM mongod.exe /T


ping 127.0.0.1 -n 4 > nul
cd "D:\GPHYGFS\server\mongo_data\ygzj_dev"
del mongod.lock
CLS
echo "Starting Servers."
ping 127.0.0.1 -n 3 > nul
echo "Starting Web Server."
start cmd /k "D:\GPHYGFS\server\GPHweb\Apache\bin\httpd.exe"
ping 127.0.0.1 -n 7 > nul
echo "Starting MySQL."
start cmd /k "D:\GPHYGFS\server\GPHweb\MySQL5.1\bin\mysqld-nt.exe" --defaults-file=D:\GPHYGFS\server\GPHweb\MySQL5.1\my.ini
ping 127.0.0.1 -n 7 > nul
cd "D:\GPHYGFS\server\source\twcq_server\script"
echo "Starting MongoDB."
start cmd /k Call "D:\GPHYGFS\server\source\twcq_server\script\mongod.bat"
ping 127.0.0.1 -n 6 > nul
echo "Starting Gateway Node."
start cmd /k Call "D:\GPHYGFS\server\source\twcq_server\script\gateway.bat"
ping 127.0.0.1 -n 10 > nul
echo "Starting Node 1."
start cmd /k Call "D:\GPHYGFS\server\source\twcq_server\script\run_1.bat"
ping 127.0.0.1 -n 31 > nul
echo "Starting Node 2."
start cmd /k Call "D:\GPHYGFS\server\source\twcq_server\script\run_2.bat"
ping 127.0.0.1 -n 26 > nul
echo "Starting Node 3."
start cmd /k Call "D:\GPHYGFS\server\source\twcq_server\script\run_3.bat"
ping 127.0.0.1 -n 6 > nul
echo Open your web browser and navigate to localhost, Enjoi. 
pause

but when the batch execute and when it comes to apache, the apache didn't run when i check in my taskmanager it didn't execute. How to fix this?



the problem is this
Code:
[Sun Jun 05 20:48:54 2016] [warn] pid file D:/GPHYGFS/server/GPHweb/Apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
PHP Warning:  [eAccelerator] This build of "eAccelerator" was compiled for PHP version 5.2.6. Rebuild it for your PHP version (5.2.10) or download precompiled binaries.\n in Unknown on line 0
PHP Fatal error:  Unable to start eAccelerator module in Unknown on line 0
How to fix this, im not familiar of this error
 
Back
Top