We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using the version 1.3.0 and for some reason I get this error.
Fatal error: Uncaught Error: Class "PlanetTeamSpeak\TeamSpeak3Framework\Helper\Profiler" not found in
<?php // Turn off error display for production use TS3\Config; use PlanetTeamSpeak\TeamSpeak3Framework\TeamSpeak3; ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(1); require_once("libraries/TeamSpeak3/TeamSpeak3.php"); require_once("config.php"); // Set the timezone to GMT date_default_timezone_set('GMT'); $currentTime = date("H:i"); $currentDate = date("l - Y-m-d "); // Load configuration $Config = new Config(); $username = $Config->username; $password = $Config->password; $address = $Config->address; $queryport = $Config->queryport; $voiceport = $Config->voiceport; $BotName = $Config->BotName; $PokeOrMessage = $Config->PokeOrMessage; $EncodedBotName = str_replace(' ', '%20', $BotName); try { $ts3 = TeamSpeak3::factory("serverquery://{$username}:{$password}@{$address}:{$queryport}/?server_port={$voiceport}&nickname={$EncodedBotName}&blocking=0"); } catch (Exception $e) { die("Error connecting to TeamSpeak server: " . $e->getMessage()); } ?>
The text was updated successfully, but these errors were encountered:
the /libraries/TeamSpeak3/ are the src folder.
Sorry, something went wrong.
No branches or pull requests
I am using the version 1.3.0 and for some reason I get this error.
Fatal error: Uncaught Error: Class "PlanetTeamSpeak\TeamSpeak3Framework\Helper\Profiler" not found in
The text was updated successfully, but these errors were encountered: