Cronjob

In order to retreive historical data (player count, uptime...) you need to setup a cronjob.

Replace </path/to/directory> with the path to the directory, where the web-app is operating at.

Setting up a cronjob is as easy as a pie. In your shell type: crontab -e and append this line to the end of the file, that just opened.

*/10 * * * * cd </path/to/directory>/query/&& php -f cron.php > /dev/null 2>&1

Close the file. Now every 10 minutes, the cronjob executes a php script, which queries every game-server and stores the needed information as a json inside a file.

Last updated