Changeset 578 for trunk/reCaptcha
- Timestamp:
- 03/25/08 02:19:12 (20 months ago)
- Files:
-
- 1 modified
-
trunk/reCaptcha/README (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/reCaptcha/README
r577 r578 1 1 Here's how to use the plugin. 2 2 1. Copy the reCaptcha folder under plugins directory. 3 2. Choose reCaptcha as the blog's captcha provider. 4 3. Edit Comment Form template, so it renders MTCaptchaFields unconditionally. In practice, this means replacing these lines 3 2. Go to Preferences - Plugins in your blog dashboard. 4 3. You should see reCaptcha plugin listed. Open reCaptcha plugin settings. 5 4. Input public and private key pair you acquired from reCaptcha.net for the blog. 6 5. Go to Blog Settings - Comment. 7 6. Choose reCaptcha as the blog's captcha provider and Save. 8 7. Edit Comment Form template, so it renders MTCaptchaFields unconditionally. In practice, this means replacing these lines 5 9 <MTIfNonEmpty tag="MTCaptchaFields"> 6 10 <MTIfCommentsAccepted><MTIfRegistrationAllowed><MTElse><$MTCaptchaFields$></MTIfRegistrationAllowed></MTIfCommentsAccepted> … … 14 18 </div> 15 19 </MTIfNonEmpty> 16 4. Edit Javascipt index template, to remove these lines of code which calls delayShowCaptcha:20 8. Edit Javascipt index template, to remove these lines of code which calls delayShowCaptcha: 17 21 <MTIfNonEmpty tag="MTCaptchaFields"> 18 22 captcha_timer = setInterval('delayShowCaptcha()', 1000); … … 20 24 21 25 If your install does not have these lines in JavaScript index template, these lines should be in GlobalJavaScript, which is a global system template. 22 5. Rebuild index and individual entry archive.26 9. Rebuild index and individual entry archives. 23 27
