Troubleshooting of curl errors: Difference between revisions
Jump to navigation
Jump to search
no edit summary
(Created page with "[https://curl.haxx.se/ curl] "is used in command lines or scripts to transfer data."[https://curl.haxx.se/] == How to resolve cUrl error (#5): Unsupported proxy syntax == Con...") |
No edit summary |
||
| Line 1: | Line 1: | ||
[https://curl.haxx.se/ | [https://curl.haxx.se/ cUrl] "is used in command lines or scripts to transfer data."[https://curl.haxx.se/] | ||
== How to resolve cUrl error (#5): Unsupported proxy syntax == | == How to resolve cUrl error (#5): Unsupported proxy syntax == | ||
| Line 17: | Line 17: | ||
</pre> | </pre> | ||
== How to resolve cUrl error (#56): OpenSSL SSL_read: No error. == | |||
Condition: The curl vesion 7.67.0 on windows met problem. Result of [https://www.php.net/manual/en/function.curl-version.php curl_version] returned: | |||
<pre> | |||
version: Array | |||
( | |||
[version_number] => 475904 | |||
[age] => 5 | |||
[features] => 2953117 | |||
[ssl_version_number] => 0 | |||
[version] => 7.67.0 | |||
[host] => x86_64-pc-win32 | |||
[ssl_version] => OpenSSL/1.1.1d | |||
[libz_version] => 1.2.11 | |||
) | |||
</pre> | |||
Solution: Use other version of curl[https://curl.haxx.se/windows/ curl command] or curl on [https://www.cygwin.com/ Cygwin]. | |||
Related articles | |||
* [https://github.com/curl/curl/issues/4982 cURL error 56: OpenSSL SSL_read: No error information · Issue #4982 · curl/curl] | |||
== References == | == References == | ||