5 外掛安裝、設定、模版修改
5.4 authimage(迴響驗證外掛)
(1) 管理者設定:點選[全部站台管控]/外掛程式設定] ,將 moderate 項目下的 plugin_authimage_enabled 選項勾選,設定plugin_authimage_length(驗證碼的長度),plugin_authimage_key(編碼鍵值;任意長度的英文數字組合的字串),plugin_authimage_expiredtime(驗證碼有效時間;單位:秒) 然後按下右下方的更新按紐,就完成全站的設定。
(2) 使用者設定:點選[個人網誌設定]/ [防制垃圾干擾管理]/[迴響驗證設定],將Enable 勾選,設定號驗證碼長度、編碼鍵值及暫存時間還有選擇預設的背景圖,最後按下右下方的更新按紐,就完成使用者的設定部份。
(3)模板修改:(3)模版修改:請在commentform.template (位在 /LT安裝目錄/templates/default/ 目錄下 )加上以下內容(通常加在submit按鈕前)
{if $authimage && $authimage->isEnabled()}
<div>
<label for="authImage">{$locale->tr("authimage_type_code")}</label>
<input type="text" name="authImage" id="authImage" value="" /> {$authimage->show()}
</div>
{/if}
如下圖所示