总有一些小问题纠结着我,比如magento带的review(评论)功能。MagentoChina采用Magento作为CMS以后,每天都有几百条的垃圾评论(review spam)冲击着我的神经。我相信很多使用Magento的朋友都有这个问题,我的另外一个站。产品评论已经过万,虽然大部分都是垃圾.这些Spam浪费我的时间,浪费我的精力,还让我的magento越来越慢,所以我决定消灭他们.
好了,我们现在来解决这个问题。其实解决这个问题很简单。也有多种处理办法
1.采用验证码,Magento connect中有给Magento review增加验证码的插件。记得有一个免费和一个收费的。
2.自己通过修改代码拒绝review spam。目前MagentoChina就是这么做的,直接让Magento判断游客提交的review中,是否带有http这个关键词。如果有,则报错。修改起来很简单,下面是代码:
代码位置在:app/code/core/Mage/Review/Model/Review.php
然后把这个文件Copy到:app/code/local/Mage/Review/Model/Review.php
然后在validate()这个方法中增加:
- if (stristr($this->getDetail(), 'http')) {
- $errors[] = $helper->__('Pls Don\'t Spam');
- }
完整的:
- public function validate()
- {
- $errors = array();
-
- $helper = Mage::helper('customer');
-
- if (!Zend_Validate::is($this->getTitle(), 'NotEmpty')) {
- $errors[] = $helper->__('Review summary can\'t be empty');
- }
-
- if (!Zend_Validate::is($this->getNickname(), 'NotEmpty')) {
- $errors[] = $helper->__('Nickname can\'t be empty');
- }
-
- if (!Zend_Validate::is($this->getDetail(), 'NotEmpty')) {
- $errors[] = $helper->__('Review can\'t be empty');
- }
- if (stristr($this->getDetail(), 'http')) {
- $errors[] = $helper->__('Pls Don\'t Spam');
- }
-
- if (empty($errors)) {
- return true;
- }
- return $errors;
- }
(责任编辑:最模板) |