Putting Your
WWW Creations Online
Before you start....
Making and uploading your web site is easier than you may think. Do not
get frightened by the amount of new things on these pages... After a very
short time of learning, the information here will be almost second nature,
and not at all scary.
Helpful Hints:
<img src="c:\webpages\images\mycar.jpg">
If this happens, set your HTML maker to relative paths. This will
produce:
<img src="/images/mycar.jpg">
Which is the correct format.
Using an FTP client such as WS-FTP or CuteFTP is rather simple.
Note: ALL FTP client programs are different. You should read and
familiarize yourself with the documentation that comes with your chosen
software. An understanding of how your program works is essential. These
instructions contain generalized for all FTP client software
allowing YOU to make the connection.
Again, these instructions are here in a generalized format.
Browsers/HTML writers vary greatly. Here is some generalized
information to allow you to upload using them. We cannot provide any
support for software packages. We can only provide the information needed
to use them.
ftp://ftp.pil.net/home/yourusername/public_html/myfile.html
where: yourusername is just that... your login name, and
Using an FTP client
Using an FTP Shell
[support@hiawatha /home]# ftp
ftp> open ftp.pil.net
Connected to richard2.pil.net.
220 richard2 FTP server (UNIX(r) System V Release 4.0) ready.
Name (ftp.pil.net:support): support
331 Password required for support.
Password:
230 User support logged in.
ftp> cd public_html
250 CWD command successful.
ftp> bin
200 Type set to I.
ftp> hash
Hash mark printing on (1024 bytes/hash mark).
ftp> put index.html
local: index.html remote: index.html
200 PORT command successful.
150 Binary data connection for index.html (207.8.164.27,7290).
############
226 Transfer complete.
12474 bytes sent in 0.0422 secs (2.9e+02 Kbytes/sec)
ftp> close
221 Goodbye.
ftp> quit
[scream@hiawatha /home]#
Using Navigator or other software to upload
where: myfile.html is the real name of the file you wish to upload.