root/trunk/reCaptcha/README @ 1371

Revision 1371, 2.1 kB (checked in by fumiakiy, 11 months ago)

Updated README. Thanks Eric Jacksch for pointing this out.

RevLine 
[577]1Here's how to use the plugin.
21. Copy the reCaptcha folder under plugins directory.
[578]32. Go to Preferences - Plugins in your blog dashboard.
43. You should see reCaptcha plugin listed.  Open reCaptcha plugin settings.
54. Input public and private key pair you acquired from reCaptcha.net for the blog.
65. Go to Blog Settings - Comment.
76. Choose reCaptcha as the blog's captcha provider and Save.
[885]8
[1371]9Users who are using the template set from MT 4.0x and MT 4.1x should follow the step 7 and 8 and skip the step 9.
10Users who are using the template set from MT 4.2 should skip the step 7 and 8 and go to step 9.
11NOTE that it is the version of the template that matters, not the version of the product you are using.  For example, you should follow the step 7 and step 8 and skip step 9 if you are using MT 4.2x that was upgraded from older versions, and have not refreshed your templates.
[885]12
137. [MT 4.0x/4.1x users only] Edit Comment Form template, so it renders MTCaptchaFields unconditionally.  In practice, this means replacing these lines
[577]14    <MTIfNonEmpty tag="MTCaptchaFields">
15    <MTIfCommentsAccepted><MTIfRegistrationAllowed><MTElse><$MTCaptchaFields$></MTIfRegistrationAllowed></MTIfCommentsAccepted>
16    <div id="comments-open-captcha">
17    </div>
18    </MTIfNonEmpty>
19to these lines:
20    <MTIfNonEmpty tag="MTCaptchaFields">
21    <div id="comments-open-captcha">
22    <$MTCaptchaFields$>
23    </div>
24    </MTIfNonEmpty>
[885]258. [MT 4.0x/4.1x users only] Edit Javascipt index template, to remove these lines of code which calls delayShowCaptcha:
[577]26    <MTIfNonEmpty tag="MTCaptchaFields">
27    captcha_timer = setInterval('delayShowCaptcha()', 1000);
28    </MTIfNonEmpty>
29
30   If your install does not have these lines in JavaScript index template, these lines should be in GlobalJavaScript, which is a global system template.
31
[885]329. [MT 4.2 users only] Edit Comments template module so it renders MTCaptchaFields by default.  In practice, this means you replace the line below
33    <div id="comments-open-captcha"></div>
34to this
35    <div id="comments-open-captcha"><$MTCaptchaFields$></div>
36
3710. Rebuild index and individual entry archives.
38
Note: See TracBrowser for help on using the browser.