07.06.2013, 02:57
Quote:
I successfully compiled a version on centos 5.9
You can download it here: http://www.sney.net/files/samphp-release-centos.zip If you need the libphp5.so you can download it here: http://www.sney.net/files/libphp5.so_centos.zip (Download it, extract libphp5.so to /usr/local/lib and run "/sbin/ldconfig /usr/local/lib" as root) Please let me know if these binaries work for you, so I can add them to the first post And now: Sleeping (4 A.M.) |
Also, a protip to people trying to use this. Be sure to load a gamemode, even an empty one. The PHP one will load with the gamemode in server.cfg. I'm just using this lol
Code:
#include <a_samp> main() { print("\n----------------------------------"); print(" Blank Gamemode"); print("----------------------------------\n"); } public OnGameModeInit() { return 1; } public OnGameModeExit() { return 1; }