Google'ın yeni doğrulama sistemi ben robot değilim kullanmak istiyorum.
Kodunu ekledim ancak robot olduğumu kanıtlasamda aşamayı geçemiyorum

humanverify_recaptcha kodlarım

<div class="blockrow">    <label for="recaptcha_challenge_field">{vb:rawphrase image_verification}</label>


<script src='https://www.google.com/recaptcha/api.js'></script>


        <div class="rightcol">
                <div class="g-recaptcha" data-sitekey="xxxxxx"></div>
        </div>


</div>
Buda orjinali

<div class="blockrow">    <label for="recaptcha_challenge_field">{vb:rawphrase image_verification}</label>


    <input id="hash" type="hidden" name="{vb:raw var_prefix}[hash]" value="{vb:raw humanverify.hash}" />
    <vb:if condition="$humanverify['load_js']">
        <script type="text/javascript">
            var RecaptchaOptions = {
            theme : '{vb:raw humanverify.theme}',
            callback: function() {document.getElementById('recaptcha_response_field').tabIndex = 1;}
            <vb:if condition="$humanverify['langcode']">,lang : '{vb:raw humanverify.langcode}'</vb:if>
        };
            function reloadRecaptcha(){
                if( typeof(Recaptcha) != 'undefined')
                {
                    Recaptcha.create("{vb:raw humanverify.publickey}", "recaptcha_block", RecaptchaOptions);
                }
            }
        </script>
    </vb:if>
    <div id="recaptcha_block">
    <vb:if condition="$humanverify['load_js']">
        <vb:if condition="$show['recaptcha_ssl']">
            <script type="text/javascript" src="https://www.google.com/recaptcha/api/challenge?k={vb:raw humanverify.publickey}">
        <vb:else />
            <script type="text/javascript" src="http://www.google.com/recaptcha/api/challenge?k={vb:raw humanverify.publickey}">
        </vb:if>
            </script>
    </vb:if>
    </div>


    <noscript>
        <vb:if condition="$show['recaptcha_ssl']">
            <iframe src="https://www.google.com/recaptcha/api/noscript?k={vb:raw humanverify.publickey}" height="300" width="400" frameborder="0"></iframe>
        <vb:else />
            <iframe src="http://www.google.com/recaptcha/api/noscript?k={vb:raw humanverify.publickey}" height="300" width="400" frameborder="0"></iframe>
      </vb:if>
      <textarea name="recaptcha_challenge_field" rows="3" cols="40" tabindex="1"></textarea>
      <input type="hidden" name="recaptcha_response_field" value="manual_challenge" />
    </noscript>


</div>