Getting Started

We are going to go through everything you need to know to get started with a website on the Mason server. Try to follow through. We will do this one step at a time.

Let's Get Technical, Technical

The first thing that you need to do is open a web browser (i.e. Firefox, Chrome, Internet Explorer) and download a File Transfer Protocol and a HTML writing application. Next you need to set up your website address through Mason, unless you have one already. If not follow these simple steps and you are good to go.
  1. Connect to the mason.gmu.edu server.
  2. Once you have a mason> prompt, enter the following commands:
  3. Open up your file transfer and HTML writing application.
  4. In your HTML writing application, open a new file and save it as index.html. Notice, all lowercase.
  5. Type in the following:
    		
    	<!DOCTYPE html> 
    	<head>
    	<title>simple document</title>
    	</head>
    	<body>
    	<p>a simple paragraph</p>
    	</body>
    	</html>
    	
  6. Open your Secure File Transfer Protocol (SFTP) software
  7. You are going to be asked to enter the server, user name and password to connect to the server. Use the following:
    • Server: mason.gmu.edu
    • Username: Your mason username
    • Password: Your GMU password
  8. Create a new folder called "375". Drag index.html into the new folder. All files from now on should be placed into public_html/375.
  9. Finally launch your web browser; the URL of your page will be:
    http://mason.gmu.edu/~yourmasonid/375/index.html
    (e.g., http://mason.gmu.edu/~hsilvers/375/index.html)