Timothy Wisdom
Timothy Wisdom
This works for me: ``` stories.add( 'A Component with All Props', withPropsCombinations(Component, { className: ['some-class-name'], type: ['primary', 'secondary'], size: ['small', 'medium', 'large'], disabled: [false, true], }), { styles: { marginBottom:...
I've just started to see this same error, from code that has been working (unchanged) for months. The proposed solution by @s0ckz also did not work for me.
I suspect is has something to do with PHP not being happy with an SSL cert. Here's what I've found so far: http://www.saotn.org/stop-turning-off-curlopt_ssl_verifypeer-and-fix-your-php-config/
I'm stumped. Even forcing curl to ignore verifying SSL is still giving me the http code 0 error. I tried this: ``` $accessToken = $soundcloud->accessToken($code, array(), array( CURLOPT_SSL_VERIFYPEER => false,...
FYI - I have also tried telling curl where the updated cacert.pem files are located by ``` curl_setopt($ch, CURLOPT_CAINFO, '/aboluste/path/to/cacert.pem'); ``` no luck either
Wow - I'm on Dreamhost too. Currently on Mortlach.
OK - thanks for the info. I have SSL installed on my site (free from startssl) and I originally thought that was causing the problem. I've tried reconfiguring it a...
I have solved my issue. Dreamhost said SoundCloud updated their DNS and there was a slow DNS resolver (which they "cleared"). My site works again without me doing anything,