-
-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
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
composer fails in SF 4.2: " curl_multi_setopt(): CURLPIPE_HTTP1 is no longer supported " #515
Comments
Correct! Would you mind sending a PR to drop using the flag? |
This PR was merged into the 1.2-dev branch. Discussion ---------- remove deprecated CURLPIPE_HTTP1 support flag cref #515 @ https://curl.haxx.se/libcurl/c/CURLMOPT_PIPELINING.html ``` HTTP/1 Pipelining support was disabled in 7.62.0. ``` here ``` lsb_release -rd Description: openSUSE Leap 15.1 Release: 15.1 curl -V curl 7.65.1 (x86_64-suse-linux-gnu) libcurl/7.65.1 OpenSSL/1.1.0i-fips zlib/1.2.11 libidn2/2.2.0 ... ``` manually ``` src/CurlDownloader.php - curl_multi_setopt($mh, CURLMOPT_PIPELINING, /*CURLPIPE_HTTP1 | CURLPIPE_MULTIPLEX*/ 3); + curl_multi_setopt($mh, CURLMOPT_PIPELINING, /*CURLPIPE_MULTIPLEX*/ 2); ``` now, check ``` composer --version Composer version 1.8.6 2019-06-11 15:03:05 ``` Commits ------- 0fd8e9a remove deprecated CURLPIPE_HTTP1 support flag
Hi I'm also getting this exact same error as of today while trying to update from Symfony 4.2 to 5. My Composer version is 1.9.1. |
Wondering when this issue will be reopened and fixed |
this issue is already fixed, please upgrade. |
you may have forgotten to upgrade your global flex install |
interesting i did not read that https://symfony.com/doc/current/setup/flex.html. I am wondering if you could explain what this is doing then using composer update symfony/flex |
That did not fix anything i only got subsequent errors.
|
That's not an error, just an info message. |
What I did to fix it this was to download the latest flex release, and then replace the flex folder in app\vendor\symfony\flex with the new one. |
@gundamftw thanks for the tip but this is not possible when building in a pipeline |
@nicolas-grekas the same error persists and after running the suggested command
nothing changed in my composer.lock file and the error is still happeing in my pipeline that is php 7.4. Let me know if there is anything i am missing or if there is any information that i can provide that may help me resolve this |
I don't know anymore which error you're seeing:
|
@nicolas-grekas i will get the verbose output to check the file but the error is still |
@diamondlee I have just had the same error. After removing the |
I have just had the same error too. And find that problem in php version. I run into problem if I use php 7.4, but on php 7.3 everything works |
@nicolas-grekas according to the documentation found at https://curl.haxx.se/libcurl/c/CURLMOPT_PIPELINING.html it seems as if Since 7.62.0, CURLPIPE_MULTIPLEX is enabled by default. so in the construction of the flex CurlDownloader.php the line
could maybe be removed or updated to the correct constant? According the the stack trace produced by the composer command install this is where the problem is
|
@nicolas-grekas and @hal869 and @gundamftw maybe using the PHP constant instead of the trying to use the constants value will keep the code compatible between php versions |
I don't understand what this discussion is about anymore: the code doesn't use the constant anymore. About multiplex being the new default, we still need to support older releases so we can't do anything for the next few years. If I miss something and you know what should be changed, please send a PR. |
@nicolas-grekas this conversation is about the fact that the symfony flex code throws an exception with php 7.4. |
|
@nicolas-grekas this seems to be resolved with the use of php 7.4.1 which was released 2019/18/12 |
I had this issue in a project that I haven't touched in a while. I fixed it by:
|
That worked for me. Thanks! |
Same issue today as well, couldn't run any composer command in my project.
Sure, but how do you updated it? I haven't installed flex globally. And I can't update anything since Composer is broken. Thanks @TimoBakx for the solution, I had to |
FTR: you can also try |
composer* |
I'm updating my v4.2 project. Composer's uptodate,
but in my Symfony project,
The text was updated successfully, but these errors were encountered: