...
Where <netid> is replaced with your actual NetID (without the <>).
Editing your site
Info |
---|
Note: If you are working remotely and/or not local to the College Station TAMU campus you will need to be connected to the TAMU College Station VPN to connect to the SFTP Server to edit your site. |
You will edit your site by using an SFTP client to connect to the people authoring site people-edit.engr.tamu.edu.
...
Following these guidelines when adding content to your site:
If you want to hand out a URL with a directory instead of a file (e.g.
https://people.tamu.edu/netid
), you will need to add an index.html file to the directory so that a page will load.All files must have an extension (i.e. end with .html, .txt, .jpg, etc.).
Directories cannot have a dot (“.”) in the name or they will not work properly.
To start building your page, create an index.html file on your local machine and upload it to your directory.
...
Open the FileZilla application
Add a new site
Go to File > Site Manager
In the following pop up window, click on the New Site button on the left side
Type
people-edit
into the field that pops upSelect SFTP - SSH File Transfer Protocol from the Protocol dropdown on the right side
Type in
people-edit.engr.tamu.edu
into the Host fieldType your NetID into the User field
Type your NetID password into the Password field (this will be removed if you opt not to have your password remembered in step 9).
Click OK
Choose either Save Password to have your password remembered, or Do Not Save Password to enter it each time. It is more secure to pick the latter option.
...
Connect to your site
Go to File > Site Manager
In the following pop up window, click on people-edit on the left side
Click on the Connect button
When prompted with the security warning, check the Always trust this host, add this key to the cache box and click OK
Add a Welcome Page to your site
Create a directory just for housing your website files called
Engineering People Site
and make a note of where the directory livesCreate a file named
index.html
in your newly createdEngineering People Site
directory using your favorite text editor and place the following contents in the file:Code Block <html> <header> <title>Welcome to my site!</title> </header> <body> <h2>Welcome to my site!</h2> </body> </html>
View your new
index.html
page locally in your browser by going to your favorite web browser, going to File > Open, and browsing to your new page. Once you are satisfied with the page, proceed to the next step.Connect to the people-edit site by using the directions under Connect to Your Site
In the upper left window of FileZilla, navigate to the
Engineering People Site
directory that you created earlier. You will see theindex.html
file in the lower left window.
...
Right-click on the
index.html
file in the lower left window and select UploadIf the file is new, then it will be uploaded and you will be finished. However, if you make edits to the file and upload it again, the file will already exist on the server and you will receive a prompt about how to handle overriding the file. The easiest option is to always override the file on the server.
...
You can now view your site in the browser by going to
people.engr.tamu.edu/<netid>
(replacing <netid> with your actual NetID)
Note |
---|
Due to server-side caching, it may take up to two minutes for your changes to appear; this is why it is important to develop your page on your local machine before uploading it. |
...