Web Wiz CATCHA Version 4.x Integration
The following step by step guide describes how to install and integrate Web Wiz CAPTCHA into your own websites forms.
- Check with your web host that your web space meets the system requirements for running Web Wiz CAPTCHA.
- Uses a zip utility program to extract the files to your hard drive keeping the original file structure intact.
The files named 'example.asp' and 'example_process_form.asp' are ONLY examples files of how Web Wiz CAPTCHA works and can be safely deleted.
- Place the folder, and it's contents, named 'CAPTCHA' into the same website directory as the web page you wish to integrate Web Wiz CAPTCHA is within.
- The web page that contains the HTML web form you wish to integrate Web Wiz CAPTCHA into and the page that processes the web form submission must have an .asp extension (eg. my_web_form.asp and my_submit_process.asp (these are example file names and not a real files))
- Open your file (web page) that contains your 'web form' in a text editor and place the following code at the top of the file (not within ASP blocks):-
Example:
|
|
|
|
<html>
<head>
<title>My Form Submission Page</title> |
|
|
|
|
- In the same file place the following code into the part of your form where you wish the CAPTCHA image to be displayed within your 'web form':-
Example:
|
|
|
|
<form action="example_process_form.asp" method="post" name="myForm" id="myForm">
Name: <input type="text" name="name" id="name" />
<input name="Submit Form" type="submit" id="Submit Form" value="Submit" />
</form> |
|
|
|
|
- Next open the file (web page) in a text editor that is to process your web form input and place the following code at the top of the file (not within ASP blocks):-
Example:
|
|
|
|
<html>
<head>
<title>My Form Submission Page</title> |
|
|
|
|
- Open in notepad the file named 'CAPTCHA_configuration.asp' found in the 'CAPTCHA' directory and edit the following line placing between the quote marks the name of the page you would like your users redirected to if the CAPTCHA code is entered incorrectly.
Example:
|
|
|
|
Const strIncorrectCAPTCHApage = "incorrect_CAPTCHA_code.htm" |
|
|
|
|
You may also want to read through the documentation on Customising the CAPTCHA Image to change colours and noise levels.
|
<!-- #include file="CAPTCHA/CAPTCHA_configuration.asp" -->