alfred-harvest
alfred-harvest copied to clipboard
SSL Certificate Error
Ever since I've upgraded to El Capitan, alfred-harvest has stopped working. Running some debugging with curl_error() it looks like there is an SSL Certificate Error. I'm not a php developer, but I was able to bandaid fix this by simply overriding SSL checking like this (for all commands):
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
Obviously this isn't totally secure, but I have no idea what CA cert is being used to verify my client with this setup.
If there is a more kosher solution to this I'd love to implement that. Thanks!