ServerFFS API Panel - Version 1.0
Okay, so this is something me and a friend have been working on, it supports all the current API commands.As more commands and stuff are added to the API, this will (hopefully) support them 
This uses HTML5, CSS3 (for the nice, round borders), and of course PHP / JSON.
Configuration:This is pretty easy to configure, first (if you don't already have one) create an API code at
https://www.serverffs.com/control/other/api/Next, allow you're webserver to access the API, this can be done by finding your sites IP address, or if you have a dedicated IP, that can be used! (I use
http://whois.domaintools.com/ to find my sites IP).
Now, once the files are downloaded, go into the "inc" folder and edit settings.php - in here, this is what you'll see:
Code:
<?php
$apikey = "Your-API-Key"; //Your API Key
$comname = "ServerFFS API WebPanel"; //Your Community Name - This will also show as the "title", and header on main page.
$servid = "Your-Server-ID"; //Your Server ID
?>
It includes the settings.php file on
all pages, I am using this method for it:
Code:
<?php include_once($_SERVER['DOCUMENT_ROOT']."/inc/settings.php"); ?>
This means, if you have it on your webserver at site.tld/folder/api - it will try to include from site.tld/inc/
Credits:First I'd like to thank "D0erf|er", for giving me the idea with his
thread called "Using the API with PHP".
And
WanderG - For helping out when I needed it.
Things still to do: Create a secure login system (don't know when this will be done), right now I use htaccess to password protect mine.
Clean up some code, and
maybe make a new interface for it.
Issues:On the list firewall bans page, if you have a lot of bans it will go down over the footer.
Demo and Download:Here is a demo of it: (currently uses my server, as an example)
http://demo.serverffs-api.dcsrvdls.com/ (The add/remove ban options are disabled on the demo, for security reasons etc, and because its just a demo

)
Download is available at:
http://files.dcsrvdls.com/downloads/apiwebpanel.zipIf you find any bugs or have any suggestions, then please reply!

Also, sorry for lack of info on it, as I havent made a thread like this before
~Adj011