Google reCaptcha को कैसे मान्य करें


10

मैंने हमसे संपर्क फ़ॉर्म में Google पुनरावृत्ति को जोड़ा है, लेकिन मूल्य कैप्चा के बिना भी सबमिट किया जा रहा है। मैंने अपने संपर्क पृष्ठ में कैप्चा के लिए निम्नलिखित कोड का उपयोग किया है:

 <div class="g-recaptcha" data-sitekey="XXXXXXXXXX"></div> 
 <script src='https://www.google.com/recaptcha/api.js'></script>

ये दो कोड मैंने उपयोग किए हैं। कृपया मुझे बताओ कि मैं कैप्चा कैसे मान्य कर सकता हूं।


1

यह आपके कैप्चा को मान्य करेगा
रघु

जवाबों:


9

आपको इस कोड को आज़माना चाहिए: मैं अपनी साइट पर इसका उपयोग कर रहा हूं।

<script>
window.onload = function() {
  var recaptcha = document.forms["contactForm"]["g-recaptcha-response"];
  recaptcha.required = true;
  recaptcha.oninvalid = function(e) {

    alert("Please complete the captcha");
   }
}
</script> 

यह विषय पर हमसे संपर्क पृष्ठ में बनाया पर काम करेंगे ... ??
मनीष गौड़

हाँ .. यह मुझे पता होगा कि अगर यह काम किया
NID

2
फिर contactForm
NID

1
आप Google Analytics के लिए एक एक्सटेंशन स्थापित कर सकते हैं। magentocommerce.com/magento-connect/… । Google इस सारे सामान को पहले से ही ट्रैक करने का एक बढ़िया काम करता है। यदि आप बाद में कुछ अधिक मजबूत चाहते हैं, तो भुगतान किए गए एक्सटेंशन हैं जो अधिक करते हैं।
एनआईडी

1
हो सकता है कि इससे आपको मदद मिलेगी .. magento.stackexchange.com/questions/37363/…
NID

7

यह स्क्रिप्ट सत्यापन के लिए उपयोग होता है google reCaptcha, Magento के डिफ़ॉल्ट सत्यापन की तरह। कृपया इसका उपयोग करें।

<form name="freeeventForm" id="freeeventForm">
    <div id="RecaptchaField"></div>
    <input type="hidden" class="validate-reCAPTCHA">
</form>
        <script src="https://www.google.com/recaptcha/api.js?onload=CaptchaCallback&render=explicit" async defer></script>
    <script type="text/javascript">
        //< ![CDATA[
            var CaptchaCallback = function() {  
            grecaptcha.render('RecaptchaField', {'sitekey' : '6LeuiDwUAAAAALByt-xxxxxxxxxxx-xUsZHFkeEP'});
        };
        var customForm = new VarienForm('freeeventForm');
        Validation.add('validate-reCAPTCHA','reCAPTCHA is mandatory',function(){
            var response = grecaptcha.getResponse();
            if (response.length === 0) {
                    return false;
            }
            return true;
    });
        //]]>
    </script>

बहुत बहुत धन्यवाद, यह प्रोटोटाइप / validate.js का उपयोग करके Magento पर reCaptcha को मान्य करने का सही उत्तर है। एक आकर्षण की तरह काम करना!
असेंबली

यह स्वीकृत उत्तर होना चाहिए, मेरे उद्देश्यों के लिए सफलतापूर्वक अनुकूलित किया गया
ajmedway

मुझे भी। धन्यवाद
भगदड़ biplab

मैं इसका उपयोग अपनी बिलिंग.phtml फ़ाइल में करना चाहता हूं, क्या आप मुझे सुझाव दे सकते हैं कि मैं इस कोड का उपयोग कर रहा हूं लेकिन पुनरावृत्ति को मान्य नहीं कर रहा हूं। `<script> window.onload = function () {// var recaptcha = document.forms [" co-shipping-form "] [" g-recaptcha-response "]; var recaptcha = jQuery ('। g-recaptcha-response')। val (); recaptcha.required = true; recaptcha.oninvalid = function (e) {अलर्ट ("कैप्चा पूरा करें"); विवरण झूठा है; }} </ script> `
अबी शर्मा

7

ऊपर दिया गया जावास्क्रिप्ट समाधान निश्चित रूप से मेरी राय में जाने का तरीका नहीं है। कोई भी बॉट जो जेएस का उपयोग नहीं कर रहा है (जो उनमें से अधिकांश है) बस आपकी मान्यता को बायपास करेगा और आपको वह सभी स्पैम मिलेंगे जिन्हें आप ब्लॉक करने की कोशिश कर रहे हैं। हमेशा सर्वर पर हमेशा मान्य होता है। जेएस सत्यापन केवल एक UX पहला कदम है।

वैसे भी, वहाँ कई समाधान हैं, लेकिन यहाँ क्या मेरे लिए Magento 1.9 में कई घंटों के शोध के बाद काम किया। यह मूल रूप से ऊपर माइक के उत्तर पर बनाया गया था, लेकिन पिछले फ़ंक्शन के बाद से फ़ाइल के लिए फ़ाइल_get_contents को स्वैप कर देता है क्योंकि आमतौर पर आपके सर्वर कॉन्फ़िगरेशन के आधार पर आपको http रैपर त्रुटियां दी जाएंगी।

एक फ़ोल्डर / एप्लिकेशन / कोड / स्थानीय / YourVendorName / ValidateCaptcha / बनाकर अपना मॉड्यूल बनाएं

अपने नए ValidateCaptcha फ़ोल्डर में, Customer.php फ़ाइल के साथ एक मॉडल फ़ोल्डर जोड़ें। इसका उपयोग Magento द्वारा प्रदान की गई कोर Customer.php फ़ाइल को ओवरराइड करने के लिए किया जाएगा।

इस कोड को कॉपी और पेस्ट करें:

<?php
class YourVendorName_ValidateCaptcha_Model_Customer extends Mage_Customer_Model_Customer {

    /**
     * Validate customer attribute values.
     *
     * @return bool
     */
    public function validate()
    {
        // This section is from the core file
        $errors = array();
        if (!Zend_Validate::is( trim($this->getFirstname()) , 'NotEmpty')) {
            $errors[] = Mage::helper('customer')->__('The first name cannot be empty.');
        }

        if (!Zend_Validate::is( trim($this->getLastname()) , 'NotEmpty')) {
            $errors[] = Mage::helper('customer')->__('The last name cannot be empty.');
        }

        if (!Zend_Validate::is($this->getEmail(), 'EmailAddress')) {
            $errors[] = Mage::helper('customer')->__('Invalid email address "%s".', $this->getEmail());
        }

        $password = $this->getPassword();
        if (!$this->getId() && !Zend_Validate::is($password , 'NotEmpty')) {
            $errors[] = Mage::helper('customer')->__('The password cannot be empty.');
        }
        if (strlen($password) && !Zend_Validate::is($password, 'StringLength', array(6))) {
            $errors[] = Mage::helper('customer')->__('The minimum password length is %s', 6);
        }
        $confirmation = $this->getPasswordConfirmation();
        if ($password != $confirmation) {
            $errors[] = Mage::helper('customer')->__('Please make sure your passwords match.');
        }

        $entityType = Mage::getSingleton('eav/config')->getEntityType('customer');
        $attribute = Mage::getModel('customer/attribute')->loadByCode($entityType, 'dob');
        if ($attribute->getIsRequired() && '' == trim($this->getDob())) {
            $errors[] = Mage::helper('customer')->__('The Date of Birth is required.');
        }
        $attribute = Mage::getModel('customer/attribute')->loadByCode($entityType, 'taxvat');
        if ($attribute->getIsRequired() && '' == trim($this->getTaxvat())) {
            $errors[] = Mage::helper('customer')->__('The TAX/VAT number is required.');
        }
        $attribute = Mage::getModel('customer/attribute')->loadByCode($entityType, 'gender');
        if ($attribute->getIsRequired() && '' == trim($this->getGender())) {
            $errors[] = Mage::helper('customer')->__('Gender is required.');
        }

        // additional reCAPTCHA validation
        // this should actually be in it's own function, but I've added 
        // it here for simplicity

        // Magento uses this method for a few different requests, so make
        // sure it's limited only to the 'createpost' action
        $action = Mage::app()->getRequest()->getActionName();
        if ( $action == 'createpost' ) { // restrict to the registration page only
            $captcha = Mage::app()->getRequest()->getPost('g-recaptcha-response', 1);
            if ( $captcha == '' ) {
                // if the field is empty, add an error which will be
                // displayed at the top of the page
                $errors[] = Mage::helper('customer')->__('Please check the reCAPTCHA field to continue.');
            } else {
                $secret = 'your-secret-key-goes-here';
                $url = 'https://www.google.com/recaptcha/api/siteverify?secret=' . $secret . '&response=' . $captcha . '&remoteip=' . $_SERVER["REMOTE_ADDR"];

                $ch = curl_init();
                // if you're testing this locally, you'll likely need to 
                // add your own CURLOPT_CAINFO parameter or you'll get
                // SSL errors
                curl_setopt( $ch, CURLOPT_URL, $url );
                curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1);
                $response = curl_exec( $ch );

                $result = json_decode( $response, true );
                if ( trim( $result['success'] ) != true ) {
                    // Add reCAPTCHA error
                    // This will be shown at the top of the registration page
                    $errors[] = Mage::helper('customer')->__('reCAPTCHA unable to verify.');
                }
            }
        }

        // now return the errors with your reCAPTCHA validation as well
        if (empty($errors)) {
            return true;
        }
        return $errors;
    }


}

अब अपने मॉड्यूल में एक आदि फ़ोल्डर जोड़ें और निम्नलिखित के साथ एक config.xml बनाएं:

<?xml version="1.0"?>
<config>
    <modules>
        <YourVendorName_ValidateCaptcha>
            <version>1.0</version>
        </YourVendorName_ValidateCaptcha>
    </modules>

    <global>
       <models>
          <customer>
              <rewrite>
                  <customer>YourVendorName_ValidateCaptcha_Model_Customer</customer>
              </rewrite>
          </customer>
       </models>
    </global>
</config>

आगे आपको अपने थीम हेड में JS जोड़ना होगा। ऐप / डिज़ाइन / फ्रंटएंड / डिफॉल्ट / YourTHEME / टेम्पलेट / पेज / html / हेड.phtml इस अधिकार को अंत में जोड़ें। यदि आपके पास यह फ़ाइल नहीं है, तो इसे बेस फ़ाइलों से कॉपी करें। आधार फ़ाइलों को अधिलेखित न करें, हालांकि। हमेशा अपना बना लो!

<?php
/* reCAPTCHA */
if ( strpos( Mage::helper('core/url')->getCurrentUrl(), 'account/create') != false ) { ?>   
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<?php } ?>

अब एप्लिकेशन / डिज़ाइन / फ्रंटएंड / डिफ़ॉल्ट / अपने / टेम्पलेट / लगातार / ग्राहक / फ़ॉर्म / रजिस्टर में। नीचे दाईं ओर बटन-सेट div से पहले इस अधिकार को जोड़ें:

    <div class="g-recaptcha" data-sitekey="your-site-key-goes-here"></div>
    <span id="captcha-required" style='display:none; color:#ff0000'><?php echo $this->__('Please Fill Recaptcha To Continue'); ?></span>

लगभग हो गया! अब बस एक नया एप्लिकेशन / etc / मॉड्यूल / YourVendorName / ValidateCaptcha.xml बनाकर अपना नया मॉड्यूल पंजीकृत करें:

<?xml version="1.0"?>
<config>
    <modules>
        <YourVendorName_ValidateCaptcha>
            <active>true</active>
            <codePool>local</codePool>
        </YourVendorName_ValidateCaptcha>
    </modules>
</config>

जो कुछ भी आप चाहते हैं उसके साथ YourVendorName बदलें। आपकी अंतिम संरचना कुछ इस तरह होनी चाहिए:

- app
  - code
    - local
      - YourVendorName
        - ValidateCaptcha
          - etc
            config.xml
          - Model
            Customer.php
- design
  - frontend
    - default
      - YOURTHEME
        - template
          - customer
            - form
              register.phtml
          - page
            - html
              head.phtml
          - persistent
            - customer
              - form
                register.phtml
- etc
  - modules
    YourVendorName_ValidateCaptcha.xml

6

मैंने संपर्क फ़ॉर्म में पुनरावृत्ति का उपयोग किया ..

<form action="<?php echo Mage::getUrl('mcrecaptcha/index/save'); ?>" id="contactForm" method="post" onSubmit="return checkcaptcha() ;">
    <ul class="form-list">
            <li class="fields">
                <div class="field">
                    <div class="input-box">
                        <input placeholder="Name" name="name" id="name" title="<?php echo Mage::helper('contacts')->__('Name') ?>" value="<?php echo $this->escapeHtml($this->helper('contacts')->getUserName()) ?>" class="input-text required-entry" type="text" />
                    </div>
                </div>
                <div class="field">
                    <div class="input-box">
                        <input placeholder="Email" name="email" id="email" title="<?php echo Mage::helper('contacts')->__('Email') ?>" value="<?php echo $this->escapeHtml($this->helper('contacts')->getUserEmail()) ?>" class="input-text required-entry validate-email contact_us_margin_top" type="text" />
                    </div>
                </div>
            </li>
            <li>
                <div class="input-box">
                    <input placeholder="Telephone" name="telephone" id="telephone" title="<?php echo Mage::helper('contacts')->__('Telephone') ?>" value="" class="input-text contact_us_margin_top" type="text" />
                </div>
            </li>
            <li class="wide">
                <div class="input-box">
                    <textarea placeholder="Comment" name="comment" id="comment" title="<?php echo Mage::helper('contacts')->__('Comment') ?>" class="required-entry input-text contact_us_margin_top" cols="5" rows="3" style="width:100%;"></textarea>
                </div>
            </li>
               <li id="rcode">  
                        <div class="captcha">
                                <div class="g-recaptcha contact_us_margin_top" data-sitekey="6Ldi8xsUAAAAAHsK15YxKsdhIn6lGk-RUIk222-f"> </div>
                        </div>
                        <div class="buttons-set contact_us_margin_top">
                            <input type="text" name="hideit" id="hideit" value="" style="display:none !important;" />
                            <button type="submit" title="<?php echo Mage::helper('contacts')->__('Submit') ?>" class="button" onClick="_gaq.push(['_trackEvent', 'Submit', 'contacts click','Contact Us'])"><span><span><?php echo Mage::helper('contacts')->__('Submit') ?></span></span></button>
                        </div>
                        <span class='captcha-error'><?php echo Mage::helper('contacts')->__('Please check the the captcha form.') ?></span>
                </li>      
        </ul>
</form>

<script>
function checkcaptcha()
{
    if((jQuery('#g-recaptcha-response').val())=='')
    {
        jQuery('.captcha-error').css('display','block');
        return false;
    }
    else
    {
        jQuery('.captcha-error').css('display','none');
    }

}
</script>

मैं विषय के निर्मित संपर्क फार्म में कैप्चा कोड लागू किया है .... आप कृपया मुझे मेरे विषय के अनुसार बता देंगे। मैं magento में शुरुआत कर रहा हूँ तो कृपया मेरी मदद करें
मनीष गौर

मैं इस कोड को संपर्क रूप में निर्मित करता हूं
जिग्स परमार

आपको बस इस कोड को अपने फॉर्म में लागू करना है और केवल डेटा-साइटकी को बदलना है
जिग्स परमार

कृपया अपना उत्तर स्वीकार करें यदि आप अपना उत्तर प्राप्त कर रहे हैं
जिग्स परमार

हाँ ......... आप इस सवाल का जवाब की जांच करें होगा magento.stackexchange.com/questions/183456/...
मनीष गौर

3

कैप्चा को मान्य करने के लिए, अपने प्रपत्र मानों को बचाने के लिए एक नियंत्रक बनाएँ और सत्यापन भी।

namespace Mike\SampleModule\Controller;

class Save extends \Magento\Framework\App\Action\Action
{
/**
* @var Google reCaptcha Options
*/
private static $_siteVerifyUrl = "https://www.google.com/recaptcha/api/siteverify?";
private $_secret;
private static $_version = "php_1.0";
/**
* Save Form Data
*
* @return array
*/
public function execute()
{
$captcha = $this->getRequest()->getParam('g-recaptcha-response');
$secret = "<--your secret key-->"; //Replace with your secret key
$response = null;
$path = self::$_siteVerifyUrl;
$dataC = array (
'secret' => $secret,
'remoteip' => $_SERVER["REMOTE_ADDR"],
'v' => self::$_version,
'response' => $captcha
);
$req = "";
foreach ($dataC as $key => $value) {
     $req .= $key . '=' . urlencode(stripslashes($value)) . '&';
}
// Cut the last '&'
$req = substr($req, 0, strlen($req)-1);
$response = file_get_contents($path . $req);
$answers = json_decode($response, true);
if(trim($answers ['success']) == true) {
    // Captcha Validated
    // Save Form Data
}else{
    // Display Captcha Error
}
}
}

सुनिश्चित करें कि आपने उपरोक्त नमूना कोड में साइट कुंजी और गुप्त कुंजी को बदल दिया है।


मैं अपने फ़ॉर्म को इस फ़ाइल से कैसे लिंक करूं? फ़ॉर्म कार्रवाई के लिए जाता है = "<? Php $ गूंज यह-> getPostActionUrl ()?>" एक POST विधि के साथ।
मूंगफली

1

नी घ,

आपका reCaptcha स्क्रिप्ट स्निपिट ऐसा लगता है कि यह काम करेगा लेकिन स्पष्ट है कि क्या यह Magento के स्रोत head.phtml में दर्ज किया गया है? (या form.phtml?) को हरे रंग के प्रकार में Magento के डिफ़ॉल्ट पूर्व PHP के ठीक बाहर रखा जाना चाहिए क्योंकि इसकी ए।

प्रश्न जब विशेष रूप से php में प्रवेश किया जाता है, तो उस तत्काल php टिप्पणियों अनुभाग के बाद इसे दर्ज करना नियमित अभ्यास होता है जो Magento अपने टेम्पलेट स्रोत पृष्ठों में से अधिकांश के लिए शीर्ष पर रखता है जैसे कि नीचे दिए गए उदाहरण?

Magento के अस्वीकरण कोड यहाँ php टैग में। यहाँ RECAPTCHA स्क्रिप्ट को स्निपिट करें?

मैगेंटो के तरीकों की संरचना के लिए और अधिक नीचे दिए गए इस वीडियो में इस reCaptcha प्रतिक्रिया सत्यापन कोड को क्या बनाता है: यह ट्यूटोरियल पहली पंक्ति में $ reCaptcha = $ _POST लाइन का उपयोग करता है ?

अंतिम प्रश्न विकल्प: क्या होगा अगर मैं इस reCaptcha प्रतिक्रिया सत्यापन करने के लिए php संस्करण का उपयोग करता हूं। php कोड स्निपिट को इस तरह से शीर्ष magento डिफ़ॉल्ट टेम्पलेट हरी टिप्पणियों अनुभाग php के बाद दर्ज किया जाएगा।

कुछ कोड मैं न चाहते हैं कि संदेश सामने के छोर पर दिखाई दे क्योंकि डिफ़ॉल्ट कॉन्टैक्टफार्म पहले से ही अपने लाल अलर्ट देता है यदि उपयोगकर्ता सभी जानकारी दर्ज नहीं करता है, तो यह प्रत्येक क्षेत्र के नीचे कहेगा, मैं बस इस कॉन्टैक्टफॉर्म के लिए काम करने के लिए reCaptcha प्राप्त करना चाहता हूं। लेकिन इस तरह से कि मैं भविष्य के उपयोग के लिए भी समझूंगा। आपका रास्ता खुद एक डेवलपर या प्रोग्रामर द्वारा बनाया गया है?

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.