Web Page Services
|
- What kind of web services does GWI offer?
GWI Offers two types of web hosting. Personal and Virtual Hosting
Personal Hosting is included with every dial-up account that we offer at no charge. All residential accounts include at least 10 MB of space on our server, and some of the business accounts include more.
Virtual Web Hosting allows you to have a website linked to a domain name (e.g. www.mydomain.com).
- Are there any additional charges with my Virtual server?
There can be, depending on how active the site is. For instance, with the Basic account, if 100 MB of transfer from your site is exceeded during the month, you will be charged an additional $0.10 per MB transferred. GWI offers a couple different Virtual web server accounts, and the costs associated are different, depending on the account. Please see our Advanced Services page for details.
- What if I want more space or more bandwidth?
Virtual Web Hosting can have more space added at the rate of $10 per month per additional 10 MB of space.
Virtual web sites transfer rates are based on the type of VWS account. Details can be found on our Advanced Services page.
- What if I want a different address for my webpage?
If you want a different address to point to your existing web site you would need to register the domain of choice and have GWI create a cname to point to your existing website.
- What kind of web server does GWI use?
Currently, we run the extremely robust Apache web server on FreeBSD.
|
Creating a Web Page
|
- How do I create a Web Page?
You can create "raw" HTML using a simple text editor like NotePad in Windows. Or, there are many HTML editors available at cost or for free that can allow you to design a web page without knowing HTML. Learn more on how to create a web page.
- What is HTML?
HTML stands for HyperText Mark-up Language. It is the language that is used to create a web page. All of the text on any web page looks the way it does because of HTML commands. Try the "View Source" command of your web browser to see what really makes up a web page.
- What should I name my files?
Our servers do not have a lot of restrictions for file names, however, there are several recommendations:
- In HTML, file names are Case Sensitive. This means home.html is different than Home.html. To keep things simple, we recommend that you keep all filenames lowercase.
- While spaces in filenames are allowed, they can cause many problems. Rather than using a space, we recommend using the underscore or dash characters. (e.g. web_page.html or web-page.html, not web page.html.
- On HTML pages, you can use either .html or .htm as the extension, either will work fine.
- Your "home" page file needs to be named one of the following: home.html, home.htm, index.html or index.htm. If one of these files is present in a directory, it will load automatically. It is highly recommended that you only have one file in a directory with one of these names. (i.e. do not have both home.html and index.html in the same directory.)
- Can I hire GWI to make my Web Page?
GWI Does not provide Web Design, however we have Marketing Partners who do offer Web Design. Visit our list of MP's and those who offer Web Design.
- Can I use Microsoft Front Page Extensions?
If you have registered a domain name, and a VWS with GWI, you can have Front Page 2002 Extensions added to your site. Front Page Extensions are only necessary if you use the special features of Microsoft Front Page when designing your web site. Personal web sites do not support Front Page Extensions.
- Can I use CGI Scripts?
Yes. See below for tips and instructions on their use.
- Can I use Server Side Includes (SSIs)?
If you have a VWS, Server Side Includes are possible. You must place SSI's in .shtml files with the syntax - <!--#include virtual="foo"-->. That is all that is needed for SSI on a VWS.
- Can I protect my web page with a password?
Yes, our servers support the .htaccess password protocol. See our .htaccess mini-FAQ.
- Can I add a Hit counter to my web page?
Yes, GWI already has a counter CGI installed for you to use if you like. Instructions on adding it to your site can be found in our Hit Counter Page. If you prefer, you can install a counter CGI of your own, which can many times give you more control over your website.
- How do I setup an email form on my web page?
The easiest way would be through cgiemail, which we already have installed on our servers. See our cgiemail FAQ for instructions on setting it up.
|
|
Uploading a Web Page
|
- Where do I upload my files to?
The host will be www.yourdomain.com. No directory path is necessary. MORE
- How do I upload my files?
The most common way is to use an FTP program. There are several free FTP programs available for both Macintosh and Windows computers. Some web page editors have FTP capabilities built in. Most computers do not come with a built-in FTP program, so you will need to download and install one first.
- Text files (.html, .htm, .pl, .cgi, or .txt) need to be uploaded using TEXT or ASCII as the method.
- Image files (.jpg, .gif) need to be uploaded using RAW DATA (Mac) or BINARY (PC).
FTP Tutorial
- What if my site has Front Page 2002 Extensions enabled?
Then you can use the publish feature of Microsoft Front Page. You will be connecting to the host www.yourdomain.com. You will also need your Front Page username and password, which you will have been contacted about once Front Page Extensions have been setup.
|
|
CGI Scripts
|
- Where do I install my CGI scripts?
CGI scripts need to be installed in the cgi-bin directory in the root level of your website (the same place you would put your home page). Usually, this directory does not exist, and you will have to create it.
- What is the absolute path for my CGI scripts?
/htdocs/www.yourdomain.com/cgi-bin
- How do I call my CGI scripts?
http://www.yourdomain.com/cgi-bin/script-name.cgi
- What is the path for perl on your server?
perl 5.6.1 is located at /usr/bin/perl
perl 5.00503 is located at /usr/bin/perl.500503
|
|
 |
Troubleshooting
|
- I keep getting the error "HTTP 404: Not Found", why?
This indicates that the address you are trying to load is incorrect. Typically this is because you are trying to load a file that either doesn't exist, or there is a slight spelling error or typo. For example, if you entered the address http://www.gwi.net/~username/test-page.html, but the file test-page.html was saved as Test-Page.html you would get the 404 Not Found error. The reason for this is because file names are Case Sensitive. This is why we recommend that all file names are kept lowercase.
- I keep getting a "Forbidden" error, why?
The Forbidden error usually indicates that the file or directory you are trying to load may have its permissions set incorrectly. Permissions of a file determine who can see, modify or use the file or directory. Most FTP programs have an option for modifying the permissions of a file or directory. There are 3 groupings of permissions on any file or directory: those for the Owner, Group and World. You are the Owner, Group and World are those viewing the site.
|
UNIX CHMOD Value
|
Owner/Group/World |
| Directory |
755
|
RWX / R-X / R-X |
| File |
644
|
RW- / R-- / R-- |
- My CGI's aren't working, why not?
CGI scripts are very particular about where they are installed, what their permissions are, and how they are called. Any one of these settings being incorrect can cause them the not function.
- Make sure that the script is installed in the cgi-bin directory.
- Make sure that the scripts were uploaded using the TEXT or ASCII method.
- Make sure that the script itself is set to permissions level 755.
- Verify that you are calling the script correctly, see the information above on "How do I call my CGI scripts?".
If all else fails, contact our support or webmaster departments with as much information as you can (script name, script location, error message, URL) and we can take a look.
|
Hit Reports
|
- Are daily and weekly logs available in this format?
As of now, no. However, most of this information can be seen in the monthly logs.
- Will I be sent reports via email?
Yes, Reports will be sent via email.
- How do I interpret my analog hit report?
Click here for a handy guide to interpreting your analog hit report.
|
|
|