Wiki source code of CAPTCHA Integration
Last modified by Vincent Massol on 2024/11/19 16:12
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | CAPTCHA are needed to make it easy to use and deploy XWiki in a public setting. CAPTCHAs allow testing whether the user trying to perform a given action is a bot or an actual human being. Using captchas helps in preventing spam. | ||
| 2 | |||
| 3 | CAPTCHAs will be displayed only for unauthenticated users (XWiki.XWikiGuest), for other users the rights system + identification is enough. | ||
| 4 | |||
| 5 | == Where are captcha needed? == | ||
| 6 | |||
| 7 | * When creating an user account -> add a captcha at the bottom of the list of fields to fill | ||
| 8 | * When leaving a comment on a wiki page -> add a captcha before the post comment button | ||
| 9 | * When editing a wiki page -> add a captcha before the "Save & Continue" and "Save & View" buttons | ||
| 10 | |||
| 11 | == Configuration == | ||
| 12 | |||
| 13 | In the xwiki.properties file: | ||
| 14 | |||
| 15 | * captchaOnRegister=true/false | ||
| 16 | * captchaOnComment=true/false | ||
| 17 | * captchaOnEdit=true/false |