J'ai besoin d'insérer ReCaptcha sous une forme dans mon application ZF. J'essaie de suivre la documentation officielle, mais le service ReCaptcha me renvoie toujours l'erreur 'incorrect-captcha-sol'. Le code J'utilise:Cadre Zend et ReCaptcha
(sous forme)
// configure the captcha service
$privateKey = 'XXXXXXXXXXXXXXXXXXX';
$publicKey = 'YYYYYYYYYYYYYYYYYYYY';
$recaptcha = new Zend_Service_ReCaptcha($publicKey, $privateKey);
// create the captcha control
$captcha = new Zend_Form_Element_Captcha('captcha',
array('captcha' => 'ReCaptcha',
'captchaOptions' => array(
'captcha' => 'ReCaptcha',
'service' => $recaptcha)));
$this->addElement($captcha);
(Dans le contrôleur)
$recaptcha = new Zend_Service_ReCaptcha('YYYYYYYYYYYYY', 'XXXXXXXXXXXXXXX');
$result = $recaptcha->verify($this->_getParam('recaptcha_challenge_field'),
$this->_getParam('recaptcha_response_field'));
if (!$result->isValid()) {
//ReCaptcha validation error
}
Toute aide s'il vous plaît?
Vous avez raison! Merci beaucoup! Tu m'as sauvé! :) – Stefano