Broadband pricingMonthly Inc VAT. See VAT Exc.
| Up to: | 8Mb/s | 8Mb/s | 24Mb/s* |
|---|---|---|---|
| Tariff | Std | Prem | ADSL2+ |
| A | £18.99 | £31.00 | £16.99 |
| C | £26.99 | £39.00 | £26.00 |
| D | £34.99 | £47.00 | £32.00 |
| E | £46.99 | £59.00 | £38.00 |
Setup £59.99 Full tariff list The package Max *ADSL2+ trial Extra charges

We expected you to use web space for web pages and not general file storage, and we allow up to 1GB of storage. If you exceed 1GB we may charge for additional usage in whole 1GB chunks. Most web sites are much smaller and we encourage you to tidy up and delete old pages and files no longer needed.
You access your web site using ftp (file transfer protocol). You can do this directly from some applications that allow design of web pages. If you need an ftp client for windows we suggest 3dftp which is shareware available from tucows, although most ftp clients work with no problems.
You then find that your web site is in the /www/ directory (assuming you used a www. subdomain as the login). If you have other subdomains, such as www2.testing.me.uk then these are in a /www2/ directory, and so on.
You can also upload pages using rsync. Rsync is an application which can ensure the copy of your entire web site on your machine is transferred to the web server, but only sending the changes you have made, even if they are within the middle of a file. This is much more efficient than ftp. Rsync can also send changes and new files in a compressed format to further speed up the process. Typically you would maintain a local copy of your site, make any changes you need and view them locally, and when you are ready use a single rsync command to quickly transfer all changes to the live site.
Typically you add a password for web use of your domain at the top level and rsync the whole site under a www/ directory.
Note: you must log in using ftp at least once to create the necessary directory structure for your site, or any sub-sites (subdomains with their own password) as otherwise rsync will not work. This initial ftp creates the necessary top level directories and fake root environment for your scripts.
For example, if you are using linux and in your site home directory, use something like:-
rsync -az . testing.me.uk@www.testing.me.uk::testing.me.uk/www/
You can create any files and directories in your /www/ directory. If you want to provide a web site just under your domain name, e.g. http://testing.me.uk/ then there are some restrictions on directories you can use - you cannot use bin, etc, lib, tmp, or usr. These are also unavailable as sub domains (e.g. you cannot have http://bin.testing.me.uk/. See below for redirection if you want http://testing.me.uk/ to redirect to http://www.testing.me.uk/
These restrictions are because the system creates a fake root environment for your scripts to use. This is set up automatically the first time you use ftp to access the site. Note that this is not set up by access using rsync. You should always log in using ftp at least once to create the directories otherwise rsync will not work.
In any directory, including the main /www/ directory, you can have an index (called index.html ). This is displayed if someone goes to the site or directory without specifying a file name. e.g. http://www.testing.me.uk/fred/ will access /www/fred/index.html on your web site.
You can have an index.html (normal web page index), or index.htm, or index.cgi, or index.gif. You can also use index.wml for WAP phone use.
Note that any subdomains for which you have DNS entries appear as directories in your web space. e.g. http://www2.testing.me.uk/ is the same as http://testing.me.uk/www2/ and is in the /www2/ directory. It is sensible to make links to other directories absolute (e.g. with http://www.testing.uk/, etc) so that viewing in different ways does not cause problems.
The file password.txt in any directory is also special - see passwords. The file errlog.txt in the top level directory is also special, see scripts. Files with an error number, e.g. 404, and .html, are also special, see custom error pages.
The directory called weblog is also special as it is used for web logs, see below.
You can create your own customised error pages if you wish. Simply create a page that is the error number followed by .html, e.g. 404.html will be the page not found error page. This applies to any requests in the same or lower directories unless a lower directory also has a 404.html.
It is always recommended that you use the HTML escape sequences for any unusual characters, e.g. £ instead of using a pound sign directly. One reason for this is that the characters you use directly will depend on the character set you are using and may be different on different browsers, or simply missing. Using the escape sequence should always work if the character is available. However, if you do wish to use any direct character coding at all, the web server defines all text/* format files using character set UTF-8 which is widely supported by browsers.
You can password protect any part of your web site by creating a file called password.txt in any directory.
If this exists then access to that directory and any other files and sub directories* require a username and password.
Include in the file a list of entries, one per line, with name:password . This lists the names and passwords allowed access. You can also include IP addresses, each on their own line, that will also be allowed without having to enter a username and password.
Users cannot access password.txt via a web page even if they correctly log in to access the directory.
The password.txt file protects every file and directory at and below that point, so you could have another password.txt file in a subdirectory. In this case the username and password used must be in both files to allow access, and so on for further sub directories.
Note: Protection of sub directories may be subverted by some cunning means, so this should not be assumed. To be sure, always put the password.txt file in every sub directory as well.
You can access logs of all web access to your site. These are available as text files listing every access so you can perform your own analysis, and as a graphical summary. The logs are held for each month.
To set up web logging, follow these simple steps.
You can create a weblog directory in any part of your site, and access to that part of the site is logged.
We aim to keep the logs for as long as practical, but it is recommended that you should download the previous months logs and store them yourself if you would like to retain a copy. You can download the raw log file using ftp.
You can upload any perl scripts to anywhere on your web site. You can make a cgi-bin directory if you like, but scripts can be included anywhere on your web site.
For perl, the script should start with #!/usr/bin/perl
Particularly for perl scripts uploaded from windows machines, please upload in ASCII mode not BINARY.
Within the script, the mail program used for sending mail is /usr/lib/sendmail . You should not use this with the -t argument (which find the From and To in the email) but use -f 'from-email-address' 'to-email-address' in place of the -t argument.
A simple mailer is available - see below.
There are various perl scripts available on the internet, and many books on the subject. You do not have access to php or mysql on the server, and you may have to change the use of sendmail as above.
Your scripts have access to the following environment variables :-
| QUERY_STRING | The query string (bit after the ? in the URI) |
| PATH_INFO | If after the script there is a / and more of a path then this is that path |
| PARAMS | The parameters (bit after a ; in the URI) |
| REQUEST_METHOD | PUT or GET |
| REQUEST_URI | The URI (web page) requested |
| HTTP_HOST | Host: header contents Your web site name |
| HTTP_AGENT | User-Agent: header contents The browser being used |
| CONTENT_TYPE | Content-type: header contents Used for form postings |
| CONTENT_LENGTH | Content-length: header contents Number of bytes in PUT file |
| SCRIPT_NAME | The name of the script being run |
| HTTP_COOKIE | Cookie: header contents |
| HTTP_FROM | From: header contents |
| HTTP_REFERER | Referer: header contents The page this link came from |
| REMOTE_USER | If a login was required, this is set to the user name |
| REMOTE_ADDR | The remote IP address. This could be an IP6 or IP4 address. |
The output from the script must include Content-Type: header and may include other headers then a blank line and the contents. The only exception is a redirection in which case it can just contain the Location: header.
If you have a file called errlog.txt in the top level, then any error output from any scripts on your site is appended to this file. This is useful for debugging.
Please let us have suggestions for any other improvements you would like to this system.
A simple perl script (mailer.pl) can be placed anywhere in your site. You can then use that in a <FORM METHOD=POST ACTION="mailer.pl"> form, including any <INPUT...> tags you like. You should include - either as input fields or and hidden input fields values for -FROM (the from email address), -MAIL (the to email address), -NEXT (the page to show after posting the form). e.g. <INPUT TYPE=HIDDEN NAME=-NEXT VALUE="thanks.html">
The web server does not automatically produce a directory index, i.e. a list of files in a directory if there is no index page. However, it is simple to add a directory index to a directory using a simple script. If you load the following as index.html then it will produce a simple directory index for the directory it is in. Obviously a much more sophisticated script could be written with icons, and sub directories, and so on, and there may be such scripts available on the web in perl.
#!/bin/csh echo "Content-Type: text/html" echo "" echo "<HTML>" echo "<TITLE>$REQUEST_URI/</TITLE>" echo "<BODY BGCOLOR=#FFFFFF>" echo "<H1>Directory listing of $REQUEST_URI/</H1>" echo "<PRE>" foreach f (*) echo -n "<A HREF='$f'>*</A> " /bin/ls -ld $f end
Sometimes you want to redirect a page. E.g. http://testing.me.uk/ to http://www.testing.me.uk/
To do this create a file in the directory for the page you want to redirect by the name index.http
In this file include the text (in this case assuming we want to redirect to www.testing.me.uk) :-
HTTP/1.0 301
Page moved
Location:
http://www.testing.co.uk/
Content-Length:
0
with a blank line at the end (the blank line is important).
For the technically minded, the web server treats any page ending with the file extension http as a raw HTTP response, so you can include any HTTP headers in the file including customised error messages, etc.