I'm working on FB login on my site and I have all done except one weird problem. I followed this post and it works fine except that the image uploaded is empty.
What can cause the corruption of the image or how can I fix this issue? When I download uploaded image on my desktop, it just says we can't open this file
$image = file_get_contents('https://graph.facebook.com/'.$fid.'/picture?type=large');
$dir = dirname(__file__).'/avatar/'.$fid.'.jpg';
file_put_contents($dir, $image);