原创作者: pikachu
阅读:1772次
评论:0条
更新时间:2011-05-26
Liferay是个很成功的开源项目,其中用到了大量的第三方组件。
组件列表来自
http://wiki.liferay.com/index.php/Liferay_Dependencies
simple java captcha http://simplecaptcha.sourceforge.net 是一套创建验证码图像的组件。Liferay使用该组件在多个功能中添加验证码功能。
在4.3版本中验证码的配置有两个地方
portal.properties
以及
captcha.properties
可以通过创建ext文件,覆盖默设置。
组件列表来自
http://wiki.liferay.com/index.php/Liferay_Dependencies
simple java captcha http://simplecaptcha.sourceforge.net 是一套创建验证码图像的组件。Liferay使用该组件在多个功能中添加验证码功能。
在4.3版本中验证码的配置有两个地方
portal.properties
## ## Captcha ## # # Set the maximum number of captcha checks per portlet session. Set this # value to 0 to always check. Set this value to a number less than 0 to # never check. # captcha.max.challenges=1
以及
captcha.properties
include-and-override=captcha-ext.properties cap.border=yes cap.border.c=black cap.border.th=1 cap.image.height=50 cap.image.width=150 #cap.text.producer=com.liferay.portal.captcha.DictionaryWordTextProducer cap.text.producer=com.liferay.portal.captcha.PinNumberTextProducer
可以通过创建ext文件,覆盖默设置。
评论 共 0 条 请登录后发表评论