我在尝试安装插件时遇到以下错误:
Installation failed: Download failed. cURL error 18: transfer closed with 2126 bytes remaining to read.
我找到了一个解决方案,可以通过
suppressing the \'Expect: 100-continue\' header 使用以下代码:
curl_setopt($curl, CURLOPT_HTTPHEADER, array(\'Expect:\'));
然而,由于Wordpress是与Windows Platform Installer一起安装的,并且是在IIS 10上运行的,因此我无法找到合适的位置来修改cURL选项。如果有人知道PHP代码的哪一部分调用
$curl
, 这将真正帮助我解决这个问题。非常感谢您的投入和积极支持。