| FAQ/Beginner |
UserPreferences |
| cornerhost wiki | FrontPage | RecentChanges | TitleIndex | WordIndex | SiteNavigation | HelpContents | moin.sf.net |
First of all, you'll need to know a little bit about HTML. Luckily, HTML is just text. If you use your browser's "view source" command on any website, you can see how it's put together. So a lot of people learn just by cutting and pasting.
W3Schools has some great tutorials on web-related subjects.
You can also download a tool that creates HTML for you, such as the free trial of
Macromedia Dreamweaver.
My set of NewbieTools used to create my first website ever as well as my current one - DominicFitzpatrick
Finally, if you just want to get some text up and aren't ready to take on HTML, you might try setting up a simple blog with
Blogger
Easy!
DNS is the system that maps domain names to individual computers. Basically, there are three parts to setting up DNS.
With web hosting, you deal with the Registry once to set up, cornerhost handles the actual DNS part, and then of course you control your files on the actual server.
Correct. The way DNS works is this:
Normally everything goes to the same place: mail, web, ftp, etc... But if you want your mail to go somewhere else (say, godaddy) you can set up an MX record. That means that while the rest of the world thinks the domain is at cornerhost, mail programs will think the domain is at godaddy, and mail gets handled by their mail server.
But... You can also set up mail forwarding rules in the cornerhost control panel, and for most cases, that's all you need.
If you run "ls -l" on your files from the shell or look in your ftp client, you'll see there are permissions on each file. It'll either be a string of letters and dashes, a three digit octal number or a bunch of checkboxes. In this case, the file is octal 666 or:
-rw-rw-rw-
That breaks down to:
- = file, not a directory rw- = user (you) can read and write the file rw- = your group can read and write the file rw- = anyone (apache) can read and write the file
Likewise, octal 755 for cgi scripts maps to -rwxr-xr-x meaning you can read, write, and execute and apache can read and execute the file. (757 would let apache write AND read the CGI, a potential security hole!)
The middle number doesn't really matter on the servers here, since we don't use groups.