Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
franga2000 committed Apr 6, 2014
2 parents 12b4259 + 6495ca5 commit 52d863f
Showing 1 changed file with 45 additions and 1 deletion.
46 changes: 45 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,48 @@
BungeeStatus
============

A PHP powered website to show players the status of your BungeeCord network
BungeeStatus is a PHP powered website that allows server owners with PHP-capable web server to show their players which of their servers are online, how many players are there on each and if they are down, why.


##Installation:

* Upload to your webserver
* Change the settings in config.php
* Add your servers to servers.json
* Check your servers.json file using a json parser (http://www.jsoneditoronline.org)

###CONFIGURATION:
config.php:
```php
$password = 'CHANGE-THIS'; //Not implemented yet
$columns = 2; //The number of columns on the page
```
servers.json:
```json
{
"servers": [
{
"Name": "Server display name",
"Adress": "Server adress",
"Port": "Server QUERY port",
"Description": "Description (optional)",
"Offline_reason": "Reason shown when the server is offline (optional)"
},
{
"Name": "Hub",
"Adress": "127.0.0.1",
"Port": 25570,
"Description": "The server used for passing between servers"
}
]
}
```
**Everything except the port MUST HAVE QUOTES!**

**Each item inside brackets ([] or {}) except the last one has to be folowed by a comma (,)!**

##Credits:

* Most of everything: franga2000 (http://franga2000.com)
* Minecraft Query Script: xPaw (https://github.com/xPaw/PHP-Minecraft-Query)
* Json Fancify Script: Dave Perrett (http://www.daveperrett.com/articles/2008/03/11/format-json-with-php/)

0 comments on commit 52d863f

Please sign in to comment.