0

我在将 reCAPTCHA 集成到 Dreamweaver 项目时遇到了一点问题。

我根本看不到小部件,也不明白为什么,我搜索了很多,但无法让它工作。

这是我的代码,在 php 页面的开头:

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "Formulaire_Ajout_Compte")) {

// reCAPTCHA
require_once('inc/recaptchalib.php');
$privatekey = "MY_PRIVATE_KEY";
$resp = recaptcha_check_answer ($privatekey,
                               $_SERVER["REMOTE_ADDR"],
                               $_POST["recaptcha_challenge_field"],
                               $_POST["recaptcha_response_field"]);

if (!$resp->is_valid) {
   die ("The reCAPTCHA wasn't entered correctly. Go back and try it again." .
        "(reCAPTCHA said: " . $resp->error . ")");
} else {

// if reCAPTCHA is OK... the end of my code then SQL injections

在我的表格中,我有:

<?php
          require_once('inc/recaptchalib.php');
          $publickey = "MY_PUBLIC_KEY";
          echo recaptcha_get_html($publickey);
        ?>

“lib”在正确的位置,我不明白为什么它根本不起作用。

4

1 回答 1

0

我找到了答案……我在 MAMP 的日志中找到了答案。权限问题,我将其更改为将其全部保存在文件和文件夹中,我认为一切正常。

于 2013-08-09T14:48:48.007 回答