mugglmenzel / journwe

travel together
journwe.com
3 stars 0 forks source link

Anonymous User #217

Open markusklems opened 9 years ago

markusklems commented 9 years ago
  1. Without registration, users can create JournWes
  2. Falls viel Müll gepostet wird: spam protection via a) CAPTCHA? b) besser: bots abwehren ohne CAPTCHA

screen shot 2014-08-08 at 11 37 40

markusklems commented 9 years ago

http://stackoverflow.com/questions/3743928/stop-spam-without-captcha

Requiring Javascript to post data blocks a fair amount of spam bots while not interfering with most users.

You can also use an nifty trick:

<input type="text" id="not_human" name="name" />
<input type="text" name="actual_name" />
<style>
   #not_human { display: none }
</style>

Most bots will populate the first field, so you can block them.

markusklems commented 9 years ago

Ergänzung: Mit Javascript eine Zahl eintragen, die auf unserem Server geprüft wird.

markusklems commented 9 years ago

https://akismet.com/