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