NATS5 Join Page CAPTCHA
From TMM Wiki
Jump to navigationJump to searchImage with Letters
To setup the classic CAPTCHA on your join forms, please add the following code to your join template(s) within the main form. You only need to do this on your regular join templates, not your gateway join templates unless you are using the gateway one step feature.
Basic
{if !empty($vars.captcha_required) || !empty($errors.captcha)} <tr> <td colspan="2" style="border:none; text-align: center"> <img src="/captcha_image.php?width=300&height=90" width="300" height="90" /><br /> <strong>Please fill in the text from the image</strong><br /> <input class="join_input" type="text" name="signup[captcha:1]" /> {if !empty($errors.captcha)} <br /> <span>{$errors.captcha}</span> {/if} </td> </tr> {/if}
Stylish
{if !empty($vars.captcha_required) || !empty($errors.captcha)} <fieldset> <legend>Captcha Image</legend> <div class="form_input"> {if $errors.captcha}<div class="join_error">{$errors.captcha}</div>{/if} <img src="/captcha_image.php?width=300&height=90" width="300" height="90" /><br /> <label class="memberinfo">Image Text:</label> <input class="join_input" type="text" name="signup[captcha:1]" /> </div> </fieldset> {/if}
Google reCAPTCHA V2
Enabling Options
You have a few different options to require CAPTCHA on your join form.
- You can turn on the MEMBER_SIGNUP_USE_CAPTCHA setting on the configuration -> surfer page in the signup form section. Enabling this setting will require CAPTCHA verification for all join pages for all sites and tours. If this setting is enabled, it will override all of the options below.
- You can turn on the 'Member CAPTCHA' setting on sites -> site management -> <select site> -> tours -> <select tour> page. Enabing this setting will require CAPTCHA verification for all join pages for the given site and tour. Please note this additional site tours do not inherit this setting. If this setting is enabled, it will override the final option below.
- You can set the values for the MEMBER_RETRY_CAPTCHA (X) and the MEMBER_RETRY_CAPTCHA_HOURS (Y) on the configuration surfer page in the signup form section. Enabling this setting will require CAPTCHA verification for all join pages for all tours of the given site and the given ip address once there are X (or more) never joined member records that were created within Y hours.