Реализация reCAPTCHA 2 не работает для моего сайта? - PullRequest
0 голосов
/ 10 сентября 2018

Моя форма на моем сайте работает правильно, так как давно. Но я столкнулся с большим количеством спама от ботов, в результате чего письма были отправлены моему администратору через. Поэтому я хочу реализовать reCAPTCHA 2.

Но это не сработает: succes продолжает отображаться как «false» при посещении https://www.google.com/recaptcha/api/siteverify

Также, когда я сейчас захожу на свой веб-сайт, при нажатии клавиши F11 я получаю следующую ошибку:

uncaught referenceerror $ не определен для: $ (document) .ready (function () {

Когда я заполняю форму и нажимаю на кнопку «Отправить», она просто обновляет страницу, даже если я не ставил флажок «Я не робот».

Вот мой код: public_html / submit.php

<?php
$secret = $_POST["secret"];
$response = $_POST["response"];
$url = "https://www.google.com/recaptcha/api/siteverify?secret=".$secret."&response=".$response;
$verify = file_get_contents($url);
echo $verify;
?>

public_html / contact.php

<html lang="en">
    <head>
        <?php include_once("php/sitetag.php"); ?>
        <title>Empire of the Wicked: Contact</title>
        <link rel="stylesheet" type="text/css" href="css/style0.css">
        <?php include_once("php/meta.php"); ?>
        <script src='https://www.google.com/recaptcha/api.js'></script>
    </head>
    <body>
        <?php include_once("scripts/analyticstracking.php") ?>
        <div id="container">
            <header>
                <?php include_once("php/header.php"); ?>
            </header>
            <nav>
                <?php include_once("php/nav.php"); ?>
            </nav>
            <main>
    <h2>Submit your game review:</h2>
    <table><tr><td>
    <form class="game-review recaptchaForm" method="post">
        <div class="form-group">
        Name* (will be published with your review):<br><input type="text" name="name1" size="50" maxlength="50" required/>
        </div>
        <br><br>
        <div class="form-group">
        E-mail (hidden with your review):<br><input type="text" name="email1" size="50" maxlength="50"/>
        </div>
        <br><br>
        <div class="form-group">
            <div class="g-recaptcha" data-sitekey="****************************************************"></div>
        </div>
            <br><br>
        <div class="form-group">
            <button type="submit" class="btn btn-default">Submit</button>
        </div>
        </form>
        </td></tr></table>

        <script>
    $(document).ready(function() {
        $(".recaptchaForm").submit(function(event) {
            var recaptcha = $("#g-recaptcha-response").val();
            if (recaptcha === "") {
                event.preventDefault();
                alert("Please check the recaptcha");
            }
             event.preventDefault();
                $.post("submit.php",{
                    "secret":"*******************************************",
                    "response":recaptcha
                },function(ajaxResponse){
                    console.log(ajaxResponse);
                    });     

        });
    });
    </script>
                </main>
                <footer>
                    <?php include_once("php/footer.php"); ?>
                </footer>
            </div>
        </body>
    </html>
...