0

I was wondering if that error means my request went through and I'm failing to get a response, or it failed before transporting the info and then gave me back an empty response.

This is in relation to my prior question: Why would I randomly receive "Unknown SSL protocol error" from CURL?

Community
  • 1
  • 1
Dave Stein
  • 8,653
  • 13
  • 56
  • 104

2 Answers2

1

it surely failed to transport the info... you can try this...

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

and make sure the SSL is working on your website/WAMP...

user1558223
  • 197
  • 1
  • 9
0

If you can't even agree on an SSL protocol with the peer you're certainly not going to transfer any data.

user207421
  • 305,947
  • 44
  • 307
  • 483