We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error parsing curl response given below:
Start of response HTTP/1.1 100 Continue
HTTP/1.1 200 OK Date: Thu, 27 Jul 2017 09:31:33 GMT Server: Apache/2.4.16 (Unix) PHP/7.0.8 X-Powered-By: PHP/7.0.8 ............... .............. End of response
FIX Add code snippet below https://github.com/bcit-ci/CodeIgniter4/blob/develop/system/HTTP/CURLRequest.php#L377
$continueStr = "HTTP/1.1 100 Continue\x0d\x0a\x0d\x0a"; $continue = 0 === strpos($output, $continueStr); if ( $continue ){ $output = substr($output, strlen($continueStr)); }
The text was updated successfully, but these errors were encountered:
46f240a
No branches or pull requests
Error parsing curl response given below:
Start of response
HTTP/1.1 100 Continue
HTTP/1.1 200 OK
Date: Thu, 27 Jul 2017 09:31:33 GMT
Server: Apache/2.4.16 (Unix) PHP/7.0.8
X-Powered-By: PHP/7.0.8
...............
..............
End of response
FIX
Add code snippet below
https://github.com/bcit-ci/CodeIgniter4/blob/develop/system/HTTP/CURLRequest.php#L377
The text was updated successfully, but these errors were encountered: