
Originally Posted by
Nicocaps
How to disable voice encyption over this PHP FrameWork?
Simple. Here's how you can do it:
PHP Code:
// connect and grab server object
$ts3_server = TeamSpeak3::factory("serverquery://{user}:{pass}@{host}:{port}/?server_port={port}");
// modify global encryption settings
$ts3_server["virtualserver_codec_encryption_mode"] = $value;
// grab channel object by name
$ts3_channel = $ts3_server->channelGetByName("My Channel");
// modify channel encryption settings
$ts3_channel["channel_codec_is_unencrypted"] = $value