You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
В common.class.php в строке 597 опечатка: $errorInfo = curl_strerror(curl_errno($ch));
Полагаю, что должно быть так: $errorInfo = curl_strerror(curl_error($ch));
The text was updated successfully, but these errors were encountered:
Нет, тут все правильно.
curl_error($ch) может НЕ выдавать описание при том, что curl_errno($ch) будет показывать код ошибки. Сам лично с этим столкнулся.
Согласно замечанию к curl_error() с php.net:
"curl_error is not a textual representation of curl_errno.
It's an actual error message.
If you want textual representation of error code, look for curl_strerror." в данной строке мы получаем описание кода ошибки curl_errno($ch).
В common.class.php в строке 597 опечатка:
$errorInfo = curl_strerror(curl_errno($ch));
Полагаю, что должно быть так:
$errorInfo = curl_strerror(curl_error($ch));
The text was updated successfully, but these errors were encountered: