If i use captcha will i be able to stop the spam c

2019-01-12 03:57发布

I have a Wordpress blog and the only user input is the commenting system. I want to totally avoid spam comments. Wordpress comes with Akismet but I can also use Captcha. Which plugin/method should I use?

My client doesn't mind users entering verification strings to post comments. If I adopt either Akisment or Captcha will I be able to completely control the spam?

Is it possible to use either Akismet or Captcha for a simple 4-digit verification? If not then please also recommend a plugin/method capable of just a 4-digit verification.

11条回答
太酷不给撩
2楼-- · 2019-01-12 04:33

Captchas aren't perfect. I've heard of people (e.g., from India) solving captchas for cash. The best way to stop spam is a combination of:

  • Captcha: proof that the user is human (although some bots can crack them). Harder captchas are harder to crack!
  • Akismet: test text for spam. Also not foolproof because some messages still may come through.
  • Authentication: when you authenticate users as legitimate, I think you can stop spam completely. E.g., a user becomes a trusted poster after 5 spam-free posts.
查看更多
Bombasti
3楼-- · 2019-01-12 04:35

A better solution is to add an hidden input style text in the form, so is invisible at people, but not for bot, so when these spambot complete the form, write also in the hidden input and with a check 'if than else' you cannot receive comments or mail that are written by bot. Exemple:

if($_POST['hidden_input'] != ""){
    echo('<p>You are a spambot!</p>');    
}
查看更多
【Aperson】
4楼-- · 2019-01-12 04:41

I saw this video for MintEye the other day and thought that it was a really great alternative to captcha.

They boast a much higher solve rate and better spam protection.

查看更多
狗以群分
5楼-- · 2019-01-12 04:44

The captchas seem to be fooled by adept people. The Akismet is better option in my view. Having said that you should still use captch along with Akismet :)

查看更多
男人必须洒脱
6楼-- · 2019-01-12 04:44

You'll never be able to completely avoid spam, but most fully automated spambots can be stopped by something like ReCaptcha.

查看更多
乱世女痞
7楼-- · 2019-01-12 04:47

Best captcha solution i know so far is Recaptcha (same used in stackoverflow).

if you want more security, you can build your own verification system.

查看更多
登录 后发表回答