cURL PUT 请求挂起

cURL PUT Requests hangs

所以这是我的问题。

我正在使用 curl 通过 HTTP 访问我的 CouchDB。我最近将我的 WAMP 更新为 PHP 5.6.16 和 Apache 2.4.17 附带的 WAMP 3 64 位。所以,自从这次升级后,我发现我不能再做PUT请求了。

环境

  1. PHP 5.6.16
  2. 阿帕奇 2.4.17
  3. Windows 10 个 64 位
  4. Wamp 3 64 位

卷曲--版本

 curl 7.49.1 (x86_64-pc-win32) libcurl/7.49.1 OpenSSL/1.0.2h nghttp2/1.11.1
Protocols: dict file ftp ftps gopher http https imap imaps ldap pop3 pop3s rtsp smb smbs smtp smtps telnet tftp
Features: AsynchDNS IPv6 Largefile NTLM SSL HTTP2

执行的代码

所以当我执行这个时:

<?php
$table="testname";
$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, 'http://localhost:5984/' . $table);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERPWD, 'validUser:validPass');
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
 'Content-type: application/json',
 'Accept: */*'
));

$response = curl_exec($ch);
curl_close($ch);

echo $response;

我从服务器得到了快速响应。

然后,我尝试创建一个数据库:

<?php
$table = "testname";
$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, 'http://localhost:5984/' . $table);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERPWD, 'validUser:validPass');
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
 'Content-type: application/json',
 'Accept: */*'
));

$response = curl_exec($ch);
curl_close($ch);

echo $response;

问题

所以,当我执行这段代码时,请求会挂在curl_exec。 奇怪的是,超时后,CouchDB 会收到请求,但不会给出任何响应。看来我的 "Put" 请求被堆放在一个缓冲区中,它们正在等待执行。

详细的 curl 输出

* Hostname in DNS cache was stale, zapped
*   Trying ::1...
*   Trying 127.0.0.1...
* Connected to localhost (127.0.0.1) port 5984 (#0)
* Server auth using Basic with user 'validUser'
> PUT /customers HTTP/1.1
Host: localhost:5984
Authorization: Basic dGVzdEFkbWluOnRlc3RQYXNzd29yZA==
Content-type: application/json
Accept: */*

* Operation timed out after 10000 milliseconds with 0 bytes received
* Closing connection 0

提示

-我尝试安装 SSL 证书,但似乎没有用。仍然安装此证书会导致问题吗? -我可以在我的 Atom 编辑器上使用 REST 客户端毫无问题地执行 PUT 请求。 -我的内部网络路由似乎有问题。我这样说是因为它影响了 PHP-Curl 以及 Curl CLI。此外,我能够执行 GET 请求,但 PUT 请求无缘无故类似于 "hanging",并且在发生超时时由我的 CouchDB "Accepted"。就像我发送长轮询请求一样。

测试了什么

  1. 在命令行中执行相同的命令 -> 相同的结果
  2. 在我的 Atom 编辑器上尝试 REST 客户端并成功
  3. 我的一个朋友尝试远程访问我的数据库并成功(所以 CouchDB 似乎不是问题)

即使我在禁用防火墙的情况下进行测试,卸载防病毒软件 (Bitdefender Total Security 2016) 也解决了我的问题。