I had a strange bug yesterday that drove me crazy all day and I wanted share the solution with you…
I'm using facebook login API, with PHP SDK, and WampServer5 (1.7) with PHP 5.2.5 .
Until yesterday everything worked fine, but then facebook api stopped working with CURL_IPRESOLVE
problem. Forums said to move to PHP 5.3 but this was available only in version of WampServer2.
I installed the new WampServer2 and allowed CURL, but from that moment Facebook PHP SDK just return
0 all the time on getuser() (facebook JS SDK was working well). It went to the redirection link
(loginurl) but on return just gave 0 all the time.
Nothing seemed to fix this, until I changed base_facebook.php , and added these parameters:
CURLOPT_SSL_VERIFYPEER => false, CURLOPT_SSL_VERIFYHOST => 2,
To the $CURL_OPTS array on line 133.
I don't know why but that seemed to fix this.
Hope this will help someone.
Best,
Sariel.