When I add my website I received: "Your website is unreachable or does not exist.". Most probably the problem is that the site contains https. Can you check if website for profile works with https?
if(isset($parts['scheme'])&&$parts['scheme']=='https'){curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,0);curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,0);# Should be 1!curl_setopt($ch, CURLOPT_SSLVERSION,3);}
I tried with and without SSLv3 ... weird
Any hints?
The geeks shall inherit the properties and methods of object earth.
What happen if you just comment the line: curl_setopt($ch, CURLOPT_SSLVERSION, 3); ?
I think will be better because some sites dropped out the support for SSL v3.0.