Web Site Replicator v3.2
Created by Mike Watkins of Envex Developments


Setting up your Member's Only Area

Now that you have your program up and running, your self replicating web site created and uploaded, and your newuser form created, you need to create and upload your Member's Only Area. Well, lets start with the login form. This is only for the people who are using cookie based authentication for their Member's Only Area.

To create the Member's Only Area login form, you can either access your Admin Control Panel, click on the Setup button, then Generate HTML Forms and select the Member's Only Area Login form from the list to instantly generate the HTML code. Or else, if you would like create the form from scratch, start by creating the <FORM ACTION> tag, which has to point to the html/members_only/members_only.cgi script on your server with a method of POST. It should look something like this:
<form action="http://www.yourdomain.com/members_only/members_only.cgi" method="POST">
Next, all you have to do is create two text fields, one with the name of username and one with the name of password. They should look something like this:
Username:<br>
<input type="text" name="username" size=25> <br><br>

Password:<br>
<input type="password" name="password" size=25> <br><br>
Now all you have to do is create the submit button for the form, which should look something like this:
<input type="submit" value="Login Now">
Now, just save and upload the page to your web server. Your member's will now be able to login to your Member's Only Area!

< Prev | Next >