Difference between revisions of "Proteksi Spammer Menggunakan reCAPTHCA"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
| Line 3: | Line 3: | ||
Salah yang yang paling populer adalah reCAPTHA. | Salah yang yang paling populer adalah reCAPTHA. | ||
| + | reCAPTCHA MediaWiki plugin menggunakan [http://www.google.com/recaptcha/captcha CAPTCHA] untuk mengatasi spam. Berikut caranya | ||
| − | * | + | * Download the zip file (hanya untuk MediaWiki 1.8 atau yang lebih baru) |
| − | + | http://code.google.com/p/recaptcha/downloads/list?q=MW-Latest | |
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| + | * Unzip MediaWiki extension. | ||
| + | cd /var/www/wiki/extensions/ | ||
| + | # * gets whatever version you downloaded | ||
| + | unzip ~/recaptcha-mediawiki-*.zip | ||
| + | # move the package to a standardized directory. | ||
| + | mv recaptcha-mediawiki-* recaptcha | ||
| − | + | * Edit LocalSettings.php | |
| − | + | vi /var/www/wiki/LocalSettings.php | |
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
require_once( "$IP/extensions/recaptcha/ReCaptcha.php" ); | require_once( "$IP/extensions/recaptcha/ReCaptcha.php" ); | ||
| − | // Sign up for these at | + | // Sign up for these at https://www.google.com/recaptcha/admin/create |
| − | $recaptcha_public_key = ' | + | $recaptcha_public_key = ''; |
| − | $recaptcha_private_key = ' | + | $recaptcha_private_key = ''; |
| + | * Masukan Public & Private key ke /var/www/wiki/LocalSettings.php dari | ||
| + | https://www.google.com/recaptcha/admin/create | ||
Selesai sudah semua proses untuk memproteksi MediaWiki dari spammer menggunakan reCAPTHA. | Selesai sudah semua proses untuk memproteksi MediaWiki dari spammer menggunakan reCAPTHA. | ||
| + | ==Referensi== | ||
| + | |||
| + | * http://www.google.com/recaptcha/captcha | ||
| + | * http://code.google.com/p/recaptcha/downloads/list?q=MW-Latest | ||
| + | * https://www.google.com/recaptcha/admin/create | ||
==Pranala Menarik== | ==Pranala Menarik== | ||
Revision as of 05:27, 2 December 2010
Spammer Wiki biasanya menggunakan software / robot yang akan meletakan URL di halaman Wiki. Salah satu cara yang paling ampuh untuk menghalangi Spammer adalah menggunakan authentikasi image / grafik. Salah yang yang paling populer adalah reCAPTHA.
reCAPTCHA MediaWiki plugin menggunakan CAPTCHA untuk mengatasi spam. Berikut caranya
- Download the zip file (hanya untuk MediaWiki 1.8 atau yang lebih baru)
http://code.google.com/p/recaptcha/downloads/list?q=MW-Latest
- Unzip MediaWiki extension.
cd /var/www/wiki/extensions/ # * gets whatever version you downloaded unzip ~/recaptcha-mediawiki-*.zip # move the package to a standardized directory. mv recaptcha-mediawiki-* recaptcha
- Edit LocalSettings.php
vi /var/www/wiki/LocalSettings.php
require_once( "$IP/extensions/recaptcha/ReCaptcha.php" ); // Sign up for these at https://www.google.com/recaptcha/admin/create $recaptcha_public_key = ; $recaptcha_private_key = ;
- Masukan Public & Private key ke /var/www/wiki/LocalSettings.php dari
https://www.google.com/recaptcha/admin/create
Selesai sudah semua proses untuk memproteksi MediaWiki dari spammer menggunakan reCAPTHA.
Referensi
- http://www.google.com/recaptcha/captcha
- http://code.google.com/p/recaptcha/downloads/list?q=MW-Latest
- https://www.google.com/recaptcha/admin/create