Getting Started
What page is loaded when I go to http://www.my-company.com?
It is strongly advised that you have an index.html file in each directory of your web site. Directories without it allow browsing through your files, possibly exposing to public view files not intended for that purpose.
The default pages that can be loaded when someone visits your web site are:
Note that you only need one type of index files in your web site directory, and index.html will always supersede others if multiple index files exist in the same directory.index.html; index.htm; index.shtml; index.php3; index.phtml; index.jsp; index.asis
Where should I place my index file?
Is index.html same as INDEX.HTML?
How do I update my web pages?
You can create and maintain your web pages, images, and scripts locally and upload them to the web server at your leisure via FTP. You can overwrite existing files or transfer a new file.
If you have installed Content Management System, you can update your web pages from the CMS Administration console.
How do I write HTML/create a website?
- Beginner's HTML
- HTML
Editors
- Dynamic HTML - The Definitive Reference
- Easy Microsoft FrontPage 2000
- FrontPage Fast and Easy
- JavaScript: The Definitive Guide
- Flash 4! Creative Web Animation
WebMonkey also has excellent resources for Web developers:
To demonstrate what HTML looks like, here is a "Hello World!" sample HTML:
<html>
<head>
<title>Hello World! Sample</title>
</head>
<body>
Hello World!
</body>
</html>
Can I create my entire web site in .htm extension?
My web site looks good on my hard drive, but after uploading it the images are missing and the links are broken?
This creates a problem when transferring your site from your hard drive (Windows or DOS) to one of our UNIX servers. It can often result in pages having broken links and missing images.
If you encounter this problem, check to make sure that your hyperlinks in your web pages correspond to the exact filenames on your website. If they do not match, you can either modify your hyperlinks in your web pages or rename your files with an FTP program so they match your hyperlinks. Please note that if you are referring to your pages with a .htm extension in your hyperlinks, make sure the filename actually ends with a .htm extension. If you are referring to your pages with .html extension in your hyperlinks, make sure the filename actually ends with a .html extension.
Another problem encountered is that you are referring to web pages and images on your hard disk. For example,
<a href="c:\webpage\welcome.htm">My Web Site</a>
The above hyperlink should be replaced with the one below it:
<a href="/welcome.htm">My Web Site</a>
The HTML page is garbled. What's wrong?
How do I edit my files while they are on the server?
What is an appropriate file size for HTML files?
Here's some suggestions to alleviate this problem:
- Split your home page to a few separate pages.
- Reduce the graphic size by shrinking the image size.
- Save photographs as .jpg files with about 85% compression ratio.
- Save images with mostly solid colors using .gif compression.
- Experiment with reducing the number of colours in your GIF files.
What file types does my Virtual Web Server support?
What are MIME types?
When new software is released for World Wide Web, the MIME configuration file has to be updated before the server will handle that software's file. If the server does not recognise a particular file you are using, please contact Service Centre with the message "MIME configuration" plus the location (URL) of that software's home page. Our system administrator will add it in the configuration after evaluation.
What is Telnet or SSH?
When you Telnet or SSH into your Virtual Web Server, you will be connected remotely to the UNIX operating system. Thus, you can type in UNIX commands and manipulate your web site.
However, since our Panelbox includes all the functions you need to manage your website, shell access is no longer needed. Thus it is disabled on our server.
There are bunch of /_vti_xxx/ directories and files in my public_html directory. Can I delete them?
If you accidentally delete them, please submit a service ticket at Service Centre and we will re-install the FrontPage Server Extensions for you.
