Save Tinyboard docs (2012-10-16) from web.archive.org

This commit is contained in:
Amsemy Teladi
2019-04-18 16:15:46 +07:00
committed by Fredrick Brennan
parent 997326af59
commit a99c45de22
37 changed files with 690 additions and 0 deletions

9
docs/config/recaptcha.md Normal file
View File

@@ -0,0 +1,9 @@
reCAPTCHA
=========
To enable reCAPTCHA, grab a public and private key pair from [here](https://web.archive.org/web/20121016193132/https://www.google.com/recaptcha/admin/create) and add them to [a config file](../config.md).
```php
$config['recaptcha'] = true;
$config['recaptcha_public'] = '<your public key>';
$config['recaptcha_private'] = '<your private Key>';
```