Difference between revisions of "NATS3 CAPTCHA"

From TMM Wiki
Jump to navigationJump to search
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{NATS4 Manual
 
| show_extras_section = false
 
}}
 
 
{{NATS3 Manual
 
{{NATS3 Manual
 
| show_troubleshooting_section = true
 
| show_troubleshooting_section = true
 
}}
 
}}
 
 
{{NATS4 Manual
 
| show_extras_section = false
 
}}
 
{{NATS3 Manual
 
| show_troubleshooting_section = true
 
}}
 
 
==For more information on CAPTCHA images in NATS4 and how to add them in, please see our [[NATS4 Adding a Verification Image]] wiki article.==
 
  
 
NATS can protect some pages with CAPTCHAs, providing an additional security measure that helps to prevent against automated login attempts.  
 
NATS can protect some pages with CAPTCHAs, providing an additional security measure that helps to prevent against automated login attempts.  
Line 20: Line 7:
 
To use the Captcha feature, insert the following somewhere between the <FORM> and </FORM tags on the desired form template:
 
To use the Captcha feature, insert the following somewhere between the <FORM> and </FORM tags on the desired form template:
  
''Note: this code is for using your own Captcha and not using the NATS4 Captcha''
 
 
<PRE>
 
<PRE>
 
<img src="{$image_url}" > //this will make the captcha image
 
<img src="{$image_url}" > //this will make the captcha image
Line 53: Line 39:
 
If your CAPTCHA image is missing from a page, ensure your server has both GD and FreeType installed, and that GD was compiled with FreeType support.  Also, make sure the CAPTCHA is enabled on the template.
 
If your CAPTCHA image is missing from a page, ensure your server has both GD and FreeType installed, and that GD was compiled with FreeType support.  Also, make sure the CAPTCHA is enabled on the template.
  
 
<HR>
 
 
For more information on CAPTCHA images and how to add them in [[NATS4]], please see our [[NATS4 Adding a Verification Image]] wiki article.
 
  
 
== See Also ==
 
== See Also ==
Line 62: Line 44:
  
 
[[Category:External Links]]
 
[[Category:External Links]]
[[Category:Also NATS4 Article]]
 
[[Category:NATS4 Troubleshooting Tips]]
 

Latest revision as of 14:55, 7 February 2020

NATS 3
Troubleshooting
Common Errors
Email_Issues
Auto Login
Emptying Forms
AutoLogin Cookie
CAPTCHA
Changing Licenses
Expired License
Zend License

NATS can protect some pages with CAPTCHAs, providing an additional security measure that helps to prevent against automated login attempts.

To use the Captcha feature, insert the following somewhere between the <FORM> and </FORM tags on the desired form template:

<img src="{$image_url}" > //this will make the captcha image
<input type="text" name="signup[captcha:1]" value="{$vars.captcha}"> // this is where the users will type in what they see in the Captcha box
{if $errors.captcha}{$errors.captcha}{/if}  //if there any errors when the users typed in what they saw in the Captcha box, this will display the errors 
{if $captcha_key}<input type="hidden" name="signup[captcha_key]" value="{$captcha_key}">{/if} // if present, add the additional captcha key into the form as a hidden field

A more stylized example is shown below:

<fieldset> 
<legend>Captcha Image</legend> 
<div class="form_input"> 
<center><img src="{$image_url}" width="150" height="45" border="0" style="padding: 3px; padding-left: 10px; padding-top: 6px"></center>
</div> 
<div class="form_input"> 
{if $errors.captcha}<div class="join_error">{$errors.captcha}</div>{/if} 
<label class="memberinfo">Verify Text:</label> 
<input type="text" class="signup_input" name="signup[captcha:1]" size="35" value="{$vars.captcha}">
</div> 

{if $captcha_key}
<input type="hidden" name="signup[captcha_key]" value="{$captcha_key}">
{/if}

</fieldset>

If your CAPTCHA image is missing from a page, ensure your server has both GD and FreeType installed, and that GD was compiled with FreeType support. Also, make sure the CAPTCHA is enabled on the template.


See Also

  • CAPTCHA -- Wikipedia's CAPTCHA article