cancel
Showing results for 
Search instead for 
Did you mean: 

Can't add Marketplace keys in Magento 2.

SOLVED
   Did you know you can see the translated content as per your choice?

Translation is in progress. Please check again after few minutes.

Re: Can't add Marketplace keys in Magento 2.

I checked code in that file, /var/www/magento/vendor/magento/framework/HTTP/Client/Curl.php

 

the code is already like advised

 

protected function parseHeaders($ch, $data)
{
if ($this->_headerCount == 0) {
$line = explode(" ", trim($data), 3);
if (count($line) < 2) {
$this->doError("Invalid response line returned from server: " . $data);
}
$this->_responseStatus = (int)$line[1];
} else {
$name = $value = '';
$out = explode(": ", trim($data), 2);
if (count($out) == 2) {
$name = $out[0];
$value = $out[1];
}

if (strlen($name)) {
if ("Set-Cookie" == $name) {
if (!isset($this->_responseHeaders[$name])) {
$this->_responseHeaders[$name] = [];
}
$this->_responseHeaders[$name][] = $value;
} else {
$this->_responseHeaders[$name] = $value;
}
}
}
$this->_headerCount++;

return strlen($data);
}

Re: Can't add Marketplace keys in Magento 2.

@Dmitri 

 

As its just vanila and it seems something went wrong during installation. Please try with fresh installtaion again. Thanks 

Manish Mittal
https://www.manishmittal.com/