How can I figure out why cURL is hanging and unresponsive?

后端 未结 4 834
滥情空心
滥情空心 2021-01-04 00:32

I am trying to track down an issue with a cURL call in PHP. It works fine in our test environment, but not in our production environment. When I try to execute the cURL fu

4条回答
  •  生来不讨喜
    2021-01-04 01:13

    If at all possible, try sudo ing as the user PHP runs under (possibly the one Apache runs under).

    The curl problem could have various reasons that require a user input, for example an untrusted certificate that is stored in the trusted certificates cache of the root user, but not the PHP one. In that case, the command would be waiting for an input that never happens.

    Update: This applies only if you run curl externally using exec - maybe it doesn't apply.

提交回复
热议问题