Let me put it this way, if i delete the errors.log file, restart apache and try to sign up with facebook the file is empty.
EDIT
Alright, debug was false in falrum config, I've set it to true and this is the error that i get now.
GuzzleHttp \ Exception \ RequestException
HELP
cURL error 60: SSL certificate problem: unable to get local issuer certificate (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)
Which then translates to
CURLE_SSL_CACERT (60)
Peer certificate cannot be authenticated with known CA certificates.
EVEN LATER EDIT
Right, solved it by going to http://curl.haxx.se/ca/cacert.pem, downloading the pem file and saving it in my php installation directory.
And the editing the php.ini with the following
[cURL]
curl.cainfo="C:\wamp\bin\php\cacert.pem"
Problem solved.
Signup and login with facebook works fine now.
Thanks for all your replies!