![]() |
[TUTORIAL] Sphere web status - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: General Discussion (/Forum-General-Discussion) +--- Forum: Documentation/Tutorials (/Forum-Documentation-Tutorials) +--- Thread: [TUTORIAL] Sphere web status (/Thread-TUTORIAL-Sphere-web-status) Pages: 1 2 |
[TUTORIAL] Sphere web status - Kanibal - 12-09-2016 10:09 PM This is a First of we need is to download software. 1) Apache http server 2) PHP (Thread Safe) 3) MySQL server Apache: 1) Unpack zip archive to your C:\ drive. 2) Go to C:\Apache24\conf and open httpd.conf 3) Now we need to configure some options here: Paste Code: LoadModule php5_module "C:/php/php7apache2_4.dll" Find and uncomment line Code: #ServerName www.example.com:80 Code: www.example.com:80 Code: localhost:80 Code: DocumentRoot "c:/Apache2/htdocs" Find block Code: <Directory /> Code: <Directory /> Find block Code: <IfModule dir_module> Code: <IfModule dir_module> Now find Code: ErrorLog "logs/error.log" Code: ErrorLog "C:/web/error.log" Code: CustomLog "logs/access.log" common Code: CustomLog "C:/web/access.log" common Find block <IfModule mime_module> and add this to the end Code: AddType application/x-httpd-php .php Finally find and uncomment this lines Code: Include conf/extra/httpd-mpm.conf Now open C:\Apache24\conf\extra\httpd-vhosts.conf, delete all content from it and type there Code: NameVirtualHost *:80 Create directories "C:\web\localhost" and "C:\web\localhost\www" Open command line as administrator type there "C:\Apache24\bin\httpd.exe -k install" and press enter. This will install Apache as service. PHP: 1) Unpack zip archive to your C:\ drive. It should be C:\php 2) Go to C:\php, find file php.ini-development and rename it to php.ini Uncomment Code: ;include_path = ".;c:\php\includes" Code: extension_dir = "./" Code: extension_dir = "C:/php/ext" Code: extension=php_mbstring.dll Code: ;date.timezone = MySQL: Download and install MySQL server. Go to installation path and open my.ini file. In [mysql] section find Code: default-character-set Code: default-character-set=utf8 In [mysqld] section find Code: character-set-server Code: character-set-server=utf8 then find Code: default-storage-engine=INNODB Code: default-storage-engine=MyISAM also comment this line Code: sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION" PHPMyAdmin Download "phpMyAdmin-4.6.5.2-all-languages.7z" from https://www.phpmyadmin.net/downloads/ Unpack zip archive to "C:\web\localhost\www" and rename "phpMyAdmin-4.6.5.2-all-languages" to "phpmyadmin". Then go to "C:\web\localhost\www\phpmyadmin" and create empty file "config.inc.php" with this content Code: <?php Sphere: Open Sphere.ini uncomment and change this lines Code: // MySql configuration. Launch Apache and MySQL service, then go to http://localhost/phpmyadmin, log in with your user/pass and create database "sphere" Then go to SQL commands and paste this code Code: CREATE TABLE IF NOT EXISTS `players_online` ( Now open sphere_serv_triggers.scp, find [FUNCTION f_onserver_timer] (add if not exists) and paste this lines Code: if (<db.connected>==0) Create in sme.scp function Code: [FUNCTION f_update_player_status] Now go to "C:\web\localhost\www" and create file status.php with this content Code: <?php Spoiler (Click to View) RE: [TUTORIAL] Sphere web status - Leonidas - 12-27-2016 09:05 AM Code: Parse error: syntax error, unexpected 'while' (T_WHILE) in /usr/www/blah/public/test.php on line 41 Copied your php exactly and I get that error. RE: [TUTORIAL] Sphere web status - Kanibal - 12-27-2016 09:24 AM (12-27-2016 09:05 AM)Leonidas Wrote: Thx there is an error in php script. Add ; here Code: $result = mysqli_query($link, "SELECT * FROM players_online"); <<<<<< ![]() RE: [TUTORIAL] Sphere web status - Leonidas - 12-27-2016 12:02 PM Lol thanks RE: [TUTORIAL] Sphere web status - Leonidas - 12-27-2016 04:09 PM One last question, how would you go about using mysql to display if the server is online or not? Currently I'm just using html to see if it can connect to the server, but when I use that players would be able to just refresh the page and spam the server. RE: [TUTORIAL] Sphere web status - Kanibal - 12-27-2016 11:04 PM Create somewhere (not in www directory) php script, and launch it every N hours/minutes/seconds from command line Code: <?php P.S. You can use crontab (see attachment) or use .bat file Code: start "C:\PHP\php.exe" -f C:\scripts\sphere_status_update.php P.P.S. I cant add attachment something is wrong with forum? ![]() RE: [TUTORIAL] Sphere web status - Leonidas - 12-28-2016 10:01 AM You're awesome man, thank you so much. RE: [TUTORIAL] Sphere web status - anexity - 04-28-2017 08:00 AM I have also one question: where is this sme.scp file where I should add the [FUNCTION f_update_player_status]? RE: [TUTORIAL] Sphere web status - Kanibal - 05-11-2017 07:23 PM (04-28-2017 08:00 AM)anexity Wrote: I have also one question: where is this sme.scp file where I should add the [FUNCTION f_update_player_status]? Some script that will be loaded at server startup. RE: [TUTORIAL] Sphere web status - DerParagorn - 06-24-2017 07:29 AM Thats cool. Thank you! |