Changeset 578 for trunk/reCaptcha

Show
Ignore:
Timestamp:
03/25/08 02:19:12 (20 months ago)
Author:
fumiakiy
Message:

More detailed instruction in README.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/reCaptcha/README

    r577 r578  
    11Here's how to use the plugin. 
    221. 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 
     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. 
     87. Edit Comment Form template, so it renders MTCaptchaFields unconditionally.  In practice, this means replacing these lines 
    59    <MTIfNonEmpty tag="MTCaptchaFields"> 
    610    <MTIfCommentsAccepted><MTIfRegistrationAllowed><MTElse><$MTCaptchaFields$></MTIfRegistrationAllowed></MTIfCommentsAccepted> 
     
    1418    </div> 
    1519    </MTIfNonEmpty> 
    16 4. Edit Javascipt index template, to remove these lines of code which calls delayShowCaptcha: 
     208. Edit Javascipt index template, to remove these lines of code which calls delayShowCaptcha: 
    1721    <MTIfNonEmpty tag="MTCaptchaFields"> 
    1822    captcha_timer = setInterval('delayShowCaptcha()', 1000); 
     
    2024 
    2125   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. 
     269. Rebuild index and individual entry archives. 
    2327