Some servers not support file_get_contents function (security reasons).
Solution to resolve this problem below.
Edit file register.php
Comment line 211
Above line 211 paste this code:
function captcha_curl_load( $url )
{
curl_setopt($ch=curl_init(), CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
curl_close($ch);
return $response;
}
$url = "https://www.google.com/recaptcha/api/siteverify?secret=" . $privatekey . "&response=" . $captcha . "&remoteip=" . $_SERVER['REMOTE_ADDR'];
$response = captcha_curl_load( $url );