IIS file download hangs/timeouts - sc-win32-status = 64

前端 未结 6 977
没有蜡笔的小新
没有蜡笔的小新 2021-02-04 00:35

Any thoughts on why I might be getting tons of \"hangs\" when trying to download a file via HTTP, based on the following?

  • Server is IIS 6
  • File being downl
6条回答
  •  野性不改
    2021-02-04 00:50

    Spent three days on this. It was the timeout that was set to 4 seconds (curl php request). Solution was to increase the timeout setting:

    //curl_setopt($ch, CURLOPT_TIMEOUT, 4); // times out after 4s
    curl_setopt($ch, CURLOPT_TIMEOUT, 60); // times out after 60s
    

提交回复
热议问题