marlen9797
Member
- Aug 18, 2018
- 9
- 5
- 33
Hi, who can help me implement the script for creating channels on the site like this https://youmadbro.ru/channelcreator.php
Can you elaborate to us what "like this" means?creating channels on the site like this
Can you elaborate to us what "like this" means?
Please realize that if someone has to read your post, then go be tasked onto a mission/job like go to this site, connect to a server, click buttons.. etc.
It's like asking someone to do free work
Please give information in your post/request so we know what you REALLY want to do and we can help you easier and faster.
Does this create permanent channels or temporary channels?creator
permanent channels with icon (PHP)Does this create permanent channels or temporary channels?
I can make this very easily using a loop and PHP or Python.
I will toss a snippet at you real quick.permanent channels with icon (PHP)
// load framework files
require_once("libraries/TeamSpeak3/TeamSpeak3.php");
// connect to local server, authenticate and spawn an object for the virtual server on port 9987
$ts3_VirtualServer = TeamSpeak3::factory("serverquery://username:[email protected]:10011/?server_port=9987");
// create a top-level channel and get its ID
$top_cid = $ts3_VirtualServer->channelCreate(array(
"channel_name" => "My Channel",
"channel_topic" => "This is a top-level channel",
"channel_codec" => TeamSpeak3::CODEC_SPEEX_WIDEBAND,
"channel_flag_permanent" => TRUE,
));
// create a sub-level channel and get its ID
$sub_cid = $ts3_VirtualServer->channelCreate(array(
"channel_name" => "My Sub-Channel",
"channel_topic" => "This is a sub-level channel",
"channel_codec" => TeamSpeak3::CODEC_SPEEX_NARROWBAND,
"channel_flag_permanent" => TRUE,
"cpid" => $top_cid,
));
How to add this script to ts-website by Wruczek cript ?It gets the job done.
GitHub - kallefrombosnia/TS3-Web-channel-manager: TS3 PHP query script which allowes users to manage their channels
TS3 PHP query script which allowes users to manage their channels - kallefrombosnia/TS3-Web-channel-managergithub.com
or you can just ask Wruczek to do it?
Its not worth to buy this. If I catch time, I will make my script to work on Wruczek website.He has it on sell, you could just buy the working script, same as on youmadbro
okIts not worth to buy this. If I catch time, I will make my script to work on Wruczek website.
Also I will fix my script.
Sorry but I cant reproduce the issue.
PHP 7.3.7Sorry but I cant reproduce the issue.
Everything works fine on my side.
PHP 7.3.7
Fatal error: Uncaught TeamSpeak3_Adapter_ServerQuery_Exception: invalid parameter in /var/www/ts/test/src/TeamSpeak3/Adapter/ServerQuery/Reply.php:316 Stack trace: #0 /var/www/ts/test/src/TeamSpeak3/Adapter/ServerQuery/Reply.php(88): TeamSpeak3_Adapter_ServerQuery_Reply->fetchError(Object(TeamSpeak3_Helper_String)) #1 /var/www/ts/test/src/TeamSpeak3/Adapter/ServerQuery.php(140): TeamSpeak3_Adapter_ServerQuery_Reply->__construct(Array, 'channelcreate c...', Object(TeamSpeak3_Node_Host), true) #2 /var/www/ts/test/src/TeamSpeak3/Node/Abstract.php(70): TeamSpeak3_Adapter_ServerQuery->request('channelcreate c...', true) #3 /var/www/ts/test/src/TeamSpeak3/Node/Server.php(87): TeamSpeak3_Node_Abstract->request('channelcreate c...', true) #4 /var/www/ts/test/src/TeamSpeak3/Node/Abstract.php(94): TeamSpeak3_Node_Server->request('channelcreate c...') #5 /var/www/ts/test/src/TeamSpeak3/Node/Server.php(150): TeamSpeak3_Node_Abstract->execute('channelcreate', Array) #6 /var/www/ts/test/index.php(42): TeamSpeak3_Node_Server->channelCre in /var/www/ts/test/src/TeamSpeak3/Adapter/ServerQuery/Reply.php on line 316