A new version of TSAC has been released today.
There were several fixes and changes in the code since the last release, here comes the CHANGELOG:
---
** New **
setpassword(), setmaxusers(), setservername(), adduser() are now standalone functions, so you can use it for editing later.
getglobalinfo() will give you several infos about the mainserver.
Please read the documents for the handling of these new functions... read more
Hello,
i've discovered a small bug in the deleteserver() function, what wil not delete a server.
Once a server has been stopped and a new admin connection has been established to the mainserver the server has to be started first to get deleted.
Workaround:
Line 401:
if(!$this->stopserver($port)) return false;
Change to:
$this->stopserver($port);
It seems, that the teamspeak server got a little cache, so you will get 2 different results if you delete it the same connections while the server was added or if you create a new connection.... read more
The first and also stable release of TSAC - TeamSpeakAdminClass has been released.
The class is written in PHP and you can use it to administrate a TeamSpeak Voiceserver over that class.
You can add or delete servers, also you can grab various statistics - like players on a specified server or wasted bandwidth.