Difference: CaptchaPlugin (9 vs. 10)

Revision 1008 Aug 2007 - KoenMartens

Line: 1 to 1
 

CaptchaPlugin

A visual confirmation plugin, known as Captcha, for new user registration. This plugin prevents automated scripts in creating users and spam your wiki with their url's to get a better google ranking.

Line: 32 to 32
 
    • The characters that you want to use in Captcha:
      • Set CHARACTERS = abcdefghijklmnopqrstuvwxyz%&?@!1234567890
Changed:
<
<
Additionally, the following settings can be added to lib/LocalSite.cfg. In time, the above options will be moved to that file too.
>
>
Additionally, the following settings can be changed in lib/LocalSite.cfg, the list below shows the defaults. In time, the above options will be moved to that file too.
 
  • $TWiki::cfg{Plugins}{CaptchaPlugin}{Expiry}=3600; # time in seconds after which a captcha will expire and be removed
Changed:
<
<
  • $TWiki::cfg{Plugins}{CaptchaPlugin}{EnableSave}=1; # enable captcha for topic save
>
>
  • $TWiki::cfg{Plugins}{CaptchaPlugin}{EnableSave}=0; # enable captcha for topic save
  • $TWiki::cfg{Plugins}{CaptchaPlugin}{SaveForAll}=0; # enable captcha for all users, not just TWikiGuest
  • $TWiki::cfg{Plugins}{CaptchaPlugin}{DeleteAfterRegistration}=0; # delete captcha after succesfull registration
  • $TWiki::cfg{Plugins}{CaptchaPlugin}{DeleteAfterSave}=0; # delete captcha after succesfull topic save
 

Plugin Installation Instructions

Line: 134 to 138
 
    # verify captcha

Added:
>
>
eval { use TWiki::Plugins::CaptchaPlugin; };
  my %database; my $vcHash = $data->{CaptchaHash}; my $vcTxt = $data->{CaptchaString};
Line: 158 to 164
  dbmclose(%database);

close(LOCKFILE);

Added:
>
>
if($TWiki::cfg{Plugins}{CaptchaPlugin}{DeleteAfterRegistration}) { TWiki::Plugins::CaptchaPlugin::expire($vcHash); }
 

Now find:

Line: 188 to 199
 

Plugin Info

Plugin Author: TWiki:Main.KoenMartens, TWiki:Main.KwangErnLiew
Changed:
<
<
Plugin Version: 06 Aug 2007 1.5-pre1
>
>
Plugin Version: 06 Aug 2007 1.5-pre2
 
Change History:  
08 Aug 2007: Added support for captcha on topic save (thanks TWiki:Main.KwangErnLiew), fixed some minor bugs, added some free fonts
06 Aug 2007: Colourised fonts; Randomised font type, font size, background colour, and font positioning; Fixed hash display on user pages; Modified oopscaptcha.tmpl
 
This site is powered by the TWiki collaboration platformCopyright � by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback
Note: Please contribute updates to this topic on TWiki.org at TWiki:TWiki.CaptchaPlugin