ISLANDS WEB HOSTING INFORMATION
FTP information
Form Mail information
Creating a spam-free site
URL forwarding
Web Hosting Order Form
More FAQ's
FTP information:
Sometimes, when you upload a page and view it afterwards, your computer
will only allow you to see the old page due to what is called 'caching'
(or storage) of previously viewed pages. You can 'trick' your computer
by changing the address you type into the browser the second time, i.e.
your main page can be either:
http://yourdomain.com/
http://yourdomain.com/index.html
http://www.yourdomain.com/
http://www.yourdomain.com/index.html
The two most popular FTP programs are:
 1.
Cute FTP. Marketed by GlobalSCAPE Inc. you can download a free 30-day
trial. You'll have to pay $39.95 after the trial period if you want to
retain all the features of CuteFTP however the basic functions will
continue to operate for you. http://www.globalscape.com
 2. WS_FTP is also a very popular program. The Lite version is available for free download at:
http://ipswitch.com
TOP
Form Mail information
Below you will find a typical mail request form. Simply copy the code in the text box and paste it into your page.
Remember to change:
name: recipient (to: your email address. This must be an address on the
same server. It can be established as a forwarding email address)
name: subject (to: subject line on return email)
Field sequence can be altered by cutting & pasting html
Change text to your requirments, i.e. Field 1 (to: Name, etc).

|
<!-- please read the comments as they will help you setup this to work, for more information please visit
http://www.scriptarchive.com/readme/formmail.html -->
<form ACTION="http://islands.co.nz/cgi-sys/FormMail.cgi" METHOD="post">
<!-- you need to replace the above "islands.co.nz" with your domain name -->
<div align="center">
<table border="0" cellpadding="0" width="70%">
<tr>
<td>Field</td>
<td><input TYPE="TEXT" NAME="FieldOne" size="20"></td>
</tr>
<tr>
<td>Field</td>
<td><input TYPE="TEXT" NAME="FieldTwo" size="20"></td>
</tr>
<tr>
<td>Your Email:</td>
<td><input TYPE="TEXT" NAME="Email" size="20"></td>
</tr>
<tr>
<td>Select Option:</td>
<td>
<select NAME="SelectOption">
<option SELECTED>Please Choose</option>
<option VALUE></option>
<option VALUE="item1">item1</option>
<option VALUE="item2">item2</option>
<option VALUE="item3">item3</option>
<option VALUE="item4">item4</option>
<option VALUE="item5">item5</option>
<option VALUE="item6">item6</option>
</select>
</td>
</tr>
<tr>
<td>Field 4:</td>
<td><textarea ROWS="6" NAME="FieldFour"
cols="20"></textarea></td>
</tr>
<tr>
<td>Select Y/N:</td>
<td>Yes:
<input TYPE="radio" CHECKED NAME="SelectY/N"
VALUE="Yes"> No:<input TYPE="radio"
NAME="SelectY/N" VALUE="No"></td>
</tr>
<tr>
<td></td>
<td><textarea ROWS="6" NAME="FieldFive"
cols="20"></textarea></td>
</tr>
<tr>
<td>Field 6:</td>
<td><input TYPE="TEXT" NAME="FieldSix" size="20"></td>
</tr>
<tr>
<td>
<input TYPE="hidden" NAME="subject" VALUE="Your Subject">
<!-- change
Your Subject with the subject you wish your email to have-->
<input
TYPE="hidden" NAME="recipient" VALUE="username@yourdomain.com ">
<!-- change
username@yourdomain.com to the email address to send the mail to -->
<input
TYPE="hidden" NAME="redirect" VALUE="http://www.yourdomain.com/">
<!-- this
is the page to be seen after they have submitted the form -->
<input
TYPE="hidden" NAME="env_report"
VALUE="REMOTE_HOST,HTTP_USER_AGENT,REMOTE_ADDR">
<!-- will
show details about the person submitting the form including there
IP-->
<input type="hidden" NAME="email" VALUE="user@domain.com">
<!-- this
is the email address the email will come from, you can set this
as a input box as above so the user can put there own in -->
</td>
<td><br><input TYPE="submit" ></td>
</tr>
</table>
</div>
</form>
|
|
TOP
Creating a spam-free site
Ever wondered how you end up getting spam through email addresses on your site?
It's not as yet a major problem, but it does happen...
Sometimes spider-harvesters (robots) find email addresses in html code.
Using a form on your site allows you to change the email address
periodically, i.e. this month it could be sent to: feb02@yourdomain.com
which using a forwarder established in your control panel, can then be
sent to your usual email address.
By setting up the default email address to a non-existent address, any
mail sent to an address where a forwarder had been changed, wouldn't
reach you.
i.e. If someone sent an email to say, apr01@yourdomain.com and you'd
since deleted that forwarder and established feb02@yourdomain.com then
the email would be sent to the address established in the control panel
email default setting. (You could set this to any unused address, i.e.
nospam@notmydomain.com).
TOP
URL forwarding
There are 3 different ways of doing this:
 1.
URL forwarding. Can be done through your domain name control panel at
most registrars, or your hosting name servers. The forwarded address is
displayed in your browsers address panel.
 2.
Framing. Leaves the original name (alias) in your browsers address
panel. Not too wonderful cause if you submit this address to search
engines, their spiders won't get to your sites content.
 3.
CNAME (Alias) forwarding. Very few domain name registrars can provide
this. For global domains try registerfly.com and UK domains
just-the-name.co.uk. CNAME forwarding allows the new URL to be
displayed in the browsers address panel, and duplicates file names too.
Search engine spiders can access the site content. Problems will be
encounted if you're intending using forms on your web pages.
a. For setup at Registerfly, refer to their
instructions. Must point to an IP address. Following entries ensure
both with and without www. prefix.
www |
CNAME (Alias) |
yourdomain.com. |
@ |
ADDRESS |
your IP address |
b. (Note: the entry for yourdomain.com on the first line, must end with a period).
c. For setup at Just-the-Name.co.uk you may add upto 10 sub domains, however all including index must point to an IP address.
TOP
|