Hi All,
I had been using v1.0 without an issue with PHP and am trying to upgrade to captcha 2.0.
My web site is on the University's server, I have no control of the original PHP set up and certain things have been disabled per their discretion.
What I'm running into is this failure notice:
Warning: file_get_contents(): https:// wrapper is disabled in the server configuration by allow_url_fopen=0 in /global/httpd/vol1/sites/(addressremovedbyme).edu/breakfast_process.php on line 18
My server side code - the line it's having an issue with is in red, MY KEY replaces my actual key of course:
if(isset($_POST['g-recaptcha-response']))
$captcha=$_POST['g-recaptcha-response'];
echo '<h2>Please check the the captcha form.</h2>';
if($response.success==false)
Since my university most likely will not make any changes to the PHP server side what are my options? Detailed examples most welcome. :)
Thanks!
Robin