Captain Tycoon |
01-17-2013 06:28 PM |
Quote:
Originally Posted by SnaKe |WiH|
(Post 2397249)
I'm getting Teamspeak Error 111 also. Have tried many different ways of putting in address.
Can you use the same server bot from another plugin? Or does it have to be it's own?
|
Check the following:
- Does your website server allow outgoing connections via the serverquery port (do not assume, you need to check - most hosting providers block ports like this).
- Are you able to manually connect to the teamspeak listenserver via telnet (use putty)
- Are you able to run commands using the serverquery login details you entered via telnet (if no then you're having permission issues with the serverquery user)
Quote:
Originally Posted by SnaKe |WiH|
(Post 2397253)
Also, when I enable this if you do a forum search and then click on any of the threads returned, you get the following error:
Fatal error: Call to undefined function log_vbulletin_error() in /home/.........../includes/teamspeak/global_bootstrap_init_start.php on line 12
|
I fixed the error above by editing /includes/teamspeak/global_bootstrap_init_start.php
FROM
Code:
catch(Exception $e) {
log_vbulletin_error($e->getCode().' '.$e->getMessage(), 'teamspeak');
}
TO...
Code:
catch(Exception $e) {
//log_vbulletin_error($e->getCode().' '.$e->getMessage(), 'teamspeak');
}
I cannot say if this fix is the best way of doing it, but it does the job for now.
Quote:
Originally Posted by Tri@de
(Post 2397023)
i solved but when i enter in some ts admincp options i get
Teamspeak Error 3329: connection failed, you are banned
|
You need to add your webserver's IP address to the teamspeak whitelist.
|