zencart google reCAPTCHA验证
下载链接: http://pan.baidu.com/s/1qYjM5NA 密码: 2ah8
下载后解压文件放到对应目录上。
pre-v1.5.1 文件夹是放到1.5.1之前版本上
去google recaptcha上申请Site key和Secret key.
申请地址:https://www.google.com/recaptcha/admin#list
打开文件includes/functions/extra_functions/recaptchalib.php在第9行和第10行中找到publickey和privatekey放入上面申请到的Site key和Secret key.
[php]
$publickey = ‘ENTER_YOUR_PUBLIC_KEY_HERE’;
$privatekey=’ENTER_YOUR_SECRET_KEY_HERE’;
[/php]
在你的模板文件中includes/templates/Your Template/templates下tpl_contact_us_default.php,tpl_modules_create_account.php和tpl_product_reviews_default.php如果有被修改过,不需要覆盖,直接将代码
[php]<?php echo recaptcha_get_html(); ?>[/php]复制到他们的文件代码中去。
发表评论