项目作者: 0x10a

项目描述 :
Symfony Secure Form with Google ReCaptcha
高级语言: PHP
项目地址: git://github.com/0x10a/symfony-secure-form-recaptcha.git
创建时间: 2018-08-16T14:14:55Z
项目社区:https://github.com/0x10a/symfony-secure-form-recaptcha

开源协议:MIT License

下载


Symfony Secure Form with Google ReCaptcha

Installation

  1. Configure app/config/parameters.yml

Fill in your host,database name,password.

  1. Configure ReCaptcha

Generate your own custom Recapcha Public and Secret Keys in the address
https://www.google.com/recaptcha

Update your Recapcha Public keys in
/Resources/views/Contact_form/contactform.html.twig.

  1. <!-- Update your Recapcha public key here -->
  2. <div class="g-recaptcha" data-sitekey="YourRecapchaPublicKey"></div>

Update your Recapcha Secret Keys in
/src/AppBundle/Recapcha/RecapchaVerification.php

  1. public function verify($response_key)
  2. {
  3. $url = "https://www.google.com/recaptcha/api/siteverify";
  4. $ch = curl_init();
  5. curl_setopt($ch, CURLOPT_URL, $url);
  6. curl_setopt($ch, CURLOPT_HEADER, 0);
  7. curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
  8. curl_setopt($ch, CURLOPT_POST, true);
  9. curl_setopt($ch, CURLOPT_POSTFIELDS, array(
  10. "secret"=>"YourRecapchaSecretKey","response"=>$response_key));
  11. $response = curl_exec($ch);
  12. curl_close($ch);
  13. $data = json_decode($response);
  14. return $data->success;
  15. }
  1. Updating the Database
  1. $ php bin/console doctrine:schema:update force to update
  1. $ php bin/console server:run