• Hey Guest, we're evolving the future of TeaSpeak.
    You're invited to join the discussion here!

Server Creating a room with a password

Red*

Active member
Hello, we are trying to create a room by putting a password on our website. But the room opens and does not put a password. Previously, we were able to create the room using Tea(m)speak by putting a password.

PHP Code ;

$ChannelID=$ts3_VirtualServer->channelCreate(array(
"channel_name" => $TS3Channel,
"channel_codec" => TeamSpeak3::CODEC_OPUS_VOICE,
"channel_topic" => "$TS3Channel",
"channel_codec_quality" => 0x06,
"channel_flag_permanent" => TRUE,
"channel_maxclients" => $TakimMax,
"channel_password" => "12345",
"channel_description" => "test"
 
Last edited:

BIOS

TeaSpeak Team
Staff member
TeaTeam
Hello, we are trying to create a room by putting a password on our website. But the room opens and does not put a password. Previously, we were able to create the room using Tea(m)speak by putting a password.

PHP Code ;

$ChannelID=$ts3_VirtualServer->channelCreate(array(
"channel_name" => $TS3Channel,
"channel_codec" => TeamSpeak3::CODEC_OPUS_VOICE,
"channel_topic" => "$TS3Channel",
"channel_codec_quality" => 0x06,
"channel_flag_permanent" => TRUE,
"channel_maxclients" => $TakimMax,
"channel_password" => "12345",
"channel_description" => "test"
try

PHP:
$ChannelID=$ts3_VirtualServer->channelCreate(array(
"channel_name" => $TS3Channel,
"channel_codec" => TeamSpeak3::CODEC_OPUS_VOICE,
"channel_topic" => "$TS3Channel",
"channel_codec_quality" => 0x06,
"channel_flag_permanent" => TRUE,
"channel_maxclients" => $TakimMax,
"channel_password" => "12345",
"channel_description" => "test"));
 

Red*

Active member
try

PHP:
$ChannelID=$ts3_VirtualServer->channelCreate(array(
"channel_name" => $TS3Channel,
"channel_codec" => TeamSpeak3::CODEC_OPUS_VOICE,
"channel_topic" => "$TS3Channel",
"channel_codec_quality" => 0x06,
"channel_flag_permanent" => TRUE,
"channel_maxclients" => $TakimMax,
"channel_password" => "12345",
"channel_description" => "test"));
Ours is like this, I just didn't copy the ending. But it doesn't work.

---- Automatically Merged Double Post ----

Can you help?
@BIOS

---- Automatically Merged Double Post ----

@BIOS
 
Last edited: