вопрос
Здравствуйте, поставил на сайт модуль для мониторинга серверов teamspeak 3. Проверил модуль на localhost - все работает, ставлю модуль на свой сайт, модуль подключиться к серверу, выдает следующую ошибку:
Warning: fsockopen() [function.fsockopen]: unable to connect to 88.198.106.195 (Connection timed out) in /public_html/engine/modules/tswebviewer/core/teamspeak/TSQuery.class.php on line 428Can't open connection to the server at 88.198.106.195:10002. It might be offline at the moment.
Ошибка в строчке $this->connection = fsockopen...
Из-за чего может быть эта ошибка и как ее исправить?
Warning: fsockopen() [function.fsockopen]: unable to connect to 88.198.106.195 (Connection timed out) in /public_html/engine/modules/tswebviewer/core/teamspeak/TSQuery.class.php on line 428Can't open connection to the server at 88.198.106.195:10002. It might be offline at the moment.
private function open_new_connection()
{
$this->connection = fsockopen($this->ip, $this->query_port, $this->sock_error, $this->sock_error_string, $this->timeout);
if ($this->sock_error != 0)
{
throw new QueryNoResponseException(sprintf("Can't open connection to the server at %s:%s. It might be offline at the moment.", $this->ip, $this->query_port));
}
}
Ошибка в строчке $this->connection = fsockopen...
Из-за чего может быть эта ошибка и как ее исправить?
Посмотрите настройки вашей тс, для группы пользователей по умолчанию откройте доступ к информации о сервере или установите веб интерфейс для тимспика прочтите здесь и выводите вашу тс с помощью него.