Вот дополнительные quickfix для пользователей с PHP версии < 5.2.0. Если у вас есть версии PHP 5.2.0, установленная на вашем сервере, вам не придется вносить какие-либо изменения.
В файле:
Code:
forum root -> includes -> vbenterprisetranlator_class_translator.php
Найти (она должна начать вблизи линии 472):
PHP Code:
$token = json_decode (curl_exec($obj_connection));
self::$token_ttl = time() + ($token->{'expires_in'});
self::$token = 'Authorization: Bearer '.$token->{'access_token'};
curl_close($obj_connection);
return 'Authorization: Bearer '.$token->{'access_token'};
и замените его с:
PHP Code:
$fulltoken = curl_exec($obj_connection);
preg_match('/{"access_token":"(.*?)"/', $fulltoken, $token);
preg_match('/"expires_in":"(.*?)"/', $fulltoken, $expires);
self::$token_ttl = time() + $expires[1];
self::$token = 'Authorization: Bearer '.$token[1];
curl_close($obj_connection);
return 'Authorization: Bearer '.$token[1];