דאָ איז אַ אַדדיטאָנאַל קוויקקפיקס פֿאַר ניצערס מיט פפּ ווערסיע <5.2.0. אויב איר האָבן נייַער ווערסיע פון פפּ ווי 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];