Arden University FTP Induction Resource

Slides:



Advertisements
Similar presentations
WordPress Installation for Beginners Sheila Bergman
Advertisements

Using FTP Prof. Wayne Pollock Hillsborough Community College Tampa, FL
DNR-322L & DNR-326.
© 2010 Delmar, Cengage Learning Chapter 1 Getting Started with Dreamweaver.
Skills: install and use Filezilla Concepts: client-server, file transfer protocol (FTP), portable software, wire-frame user interface diagram, Web site.
Hosting Your Web site Guide to Accessing Student Web Space (for most up-to-date information)
Building Web Pages With Microsoft Office. Introduction This tutorial is for the beginning web builder. It utilizes software that you already have, Microsoft.
Explore the Dreamweaver Workspace View a Web page and use Help Plan and Define a Web site Add a Folder and Pages, and set the Home page Create and View.
Exploring the Internet Creating and setting up your website Instructor: Michael Krolak Instructor: Patrick Krolak See also
CIS101 Introduction to Computing Week 05. Agenda Your questions CIS101 Survey Introduction to the Internet & HTML Online HTML Resources Using the HTML.
CIS101 Introduction to Computing
ETT 429 Spring 2007 Web Design Basics II. Publishing Web Pages Activating your NIU website Go to this.
Internet Publishing / Dreamweaver Luke E. Reese CARRS
Images By Tara Frieszell By Tara Frieszell. Adding images to your website will make it more interesting and add to the design. However, some viewers aren’t.
FileZilla Skills: install and use FileZilla IT concepts: portable software, file transfer protocol (FTP), Web site mirror This work is licensed under a.
Filezilla Skills: install and use Filezilla IT concepts: client-server review, file transfer protocol (FTP), Web site mirror, portable software, open source.
Creating and Publishing Your own website
JOIN A COMMUNITY OF 80,000 E-COMMERCE SITES WORLDWIDE.
INSTRUCTIONAL SUPPORT SERVICES (ISS) SHORT COURSE, FALL 2012 UMSL Introduction to Web Page Design.
How to create a website for free Panagiotis Kafkarkou.
Installing the Core FTP Client Go to Click on “Download Core FTP now!” Under the Core FTP LE 2.2: free version heading Select.
Getting Started with Dreamweaver
Intro to MIS – MGS351 Building a Webpage. Chapter Overview m The World Wide Web – Web servers, Web browsers and Web pages m HTML Introduction m Using.
CNIT 132 Intermediate HTML and CSS Publish Web Page.
Dropbox is a tool the CSME will set up for its participants upon request so that participants do not have to upload podcasts to CSME servers via FTP (file.
Connecting to USF Network for Web Site SSH Secure Shell is the FTP program you will use to download your http files onto the USF server. To get the SSH.
Tutorial #2 Creating Links. Tutorial #1 Review Basic Page (DOCTYPE, HTML, Head, Title, Body) Tags Structure( ),,,,,, Nested Tags content Tag Attributes.
1 Session 1: Introduction to HTML Spring Today’s Agenda Cover useful terminology for today’s session HTML, browsers, servers, etc. HTML Tags Get.
InteractiveMedia’s Imagine Software Platform When user clicks on the Imagine desktop icon or installed app. This is the first thing the user will see full.
Websites 101 Technology Committee UPSOM. Web Class – Goals  Make a simple web page (or series of pages)  Upload that page to the internet  Feel comfortable.
Search on the internet the different ways for building a website, and choose which one bests suits you for what website you are doing.
CM143Web Week 8 Review of Assignment 1 Revision & Elaboration.
Creating and Publishing Your own web site PC Version SEAS 001 Professor Ahmadi.
How to upload files to Altervista Overview:
WHAT IS FTP? FTP (File Transfer Protocol) is a known effective and organized way of transferring files over the internet directly from one computer to.
HOW TO UPLOAD A WEBSITE BY KATIE HARDAKER.  SEARCH THE INTERNET THE VARIETY OF OPTIONS AVAILABLE FOR CONSTRUCTING A WEBSITE AND CHOOSE THE APPROPRIATE.
Publishing Your Web Pages Ann Emmanuel SIUE Web Administrator
Uploading Information to the Website. Uploading Information Uploading information to the website is very simple. Our website is updated through a system.
G053 - Lecture 18 Uploading Your Site Mr C Johnston ICT Teacher
How to use WS_FTP A Step by Step Guide to File Transfer.
So – You want to learn how to put an article onto the state website. (Note: If you have not done so, you will need to review the web training provided.
Internet Publishing / Dreamweaver Luke E. Reese Biosystems & Ag. Engr. / CARRS
Website Design:. Once you have created a website on your hard drive you need to get it up on to the Web. This is called "uploading“ or “publishing” or.
Open the index.html Open this PowerPoint from the S Drive IDT folder Chapman Images.ppt.
Session 1: Introduction to HTML Fall Today’s Agenda Talk about the functions of the Internet Cover useful terminology for today’s session HTML,
Navigating the Course 1. Course Materials 2 Software: Notepad (or TextEdit on a Mac) – comes with operating system Internet Explorer Web Browser FireFox.
Module 4 Creating EMC Files, Uploading EMC Files and Downloading Reports PC-ACE Pro32.
Basic Web Design UVICELL Week 4 Templates and site management Week 4 Templates and site management.
Getting Started with Dreamweaver
MicrosoftTM SharePoint Content Management SystemTutorial
Introduction to HTML.
How to Create Static and Animated PowerPoint Slides
About Dropbox Dropbox is a tool the CSME will set up for its participants upon request so that participants do not have to upload podcasts to CSME servers.
Hillsborough Community College
Chapter A - Getting Started with Dreamweaver MX 2004
CNIT131 Internet Basics & Beginning HTML
Lawson System Foundation 9.0
بسم الله الرحمن الرحيم.
FTP - File Transfer Protocol
Adding a File to a Course
Chromebook Training.
CoreFTP.
SEEM4570 Tutorial 07: Filezilla and PHP
CoreFTP.
Getting Started with Dreamweaver
CGS 3175: Internet Applications Fall 2009
Version: Macromedia Dreamweaver CS3 Updated: April 2008
TC 310 The Computer in Technical Communication
Rob Britt CEAL Library Technology Committee Meeting April 2, 2008
Presentation transcript:

Arden University FTP Induction Resource Dr Anthony Basiel abasiel@arden.ac.uk For Students and Tutors help@arden.ac.uk Add name and date and contact info

Overview HTML Files Media Files Part 1: Video walk through https://youtu.be/gsLKz9s4jO8 Part 2: Video walk through – FTP Video walk through: https://www.youtube.com/watch?v=9sv4JqRXxIM&feature=yo utu.be&hd=1 FTP Guide provided by the IT Team

HTML files When you make your website file management you will mirror the structure in the Student Server as you copy the files over. Test the files locally in your hard drive. Screen grabs of this process can be used in the Level 4 Web Design module to demonstrate your testing and implementation section. The ‘home page’ will be in the root directory with the default name: index.htm or index.html So your website URL will be: Students: http://students.bl.rdi.co.uk/Your_STU_Number/File_Name Tutors: url: http://students.bl.rdi.co.uk/Network_Login_Name/File_Name

Media files Plan ahead what your folder names and file names are so you can systematically build your website as it grows in size. This w3schools code* has the image file in the root directory with the index.html file. <!DOCTYPE html> <html> <body> <h2>Alternative text</h2> <p>The alt attribute should reflect the image content, so users who cannot see the image gets an understanding of what the image contains:</p> <img src="img_chania.jpg" alt="Flowers in Chania" width="460" height="345"> </body> </html> * https://www.w3schools.com/html/tryit.asp?filename=tryhtml_images_alt_chania

Media files A folder for the images called ‘pix’ has been made to store the still image files. <!DOCTYPE html> <html> <body> <h2>Alternative text</h2> <p>The alt attribute should reflect the image content, so users who cannot see the image gets an understanding of what the image contains:</p> <img src=“pix/img_chania.jpg" alt="Flowers in Chania" width="460" height="345"> </body> </html>

YouTube walk through This video may help: Part 1: Video walk through https://youtu.be/gsLKz9s4jO8

FTP Software For your personal PC: Download and install ‘Filezilla FTP Client’ from the following link. https://filezilla-project.org/ You can also use the ‘portable’ version of the software if you want to install this quickly on your PC. https://portableapps.com/apps/internet/filezilla_ portable The Arden PC lab has a link to open Filezilla as part of the Windows Start menu.

Part 2: Video walk through – FTP Part 2: Using the Filzilla software https://www.youtube.com/watch?v=9s v4JqRXxIM&feature=youtu.be&hd=1 Note: If the video won’t open in one web browser try another that will play HTML5 video.

FTP Guide Guide to uploading onto the student server (via FTP) This is a guide on how to upload files and/or projects onto the ilearn student sever using a FTP client (such as FileZilla). Please follow these instructions. 1. Download and install ‘Filezilla FTP Client’ from the following link. https://filezilla-project.org/ Click ‘Download FileZilla Client’ Then (depending on your computer and operating system) click the relevant version. You will then be prompted to ‘save file’ and it will download. Upon completion, double click the .exe file, click ‘I Agree’ to the license agreement and continue to follow the instructions to install.

FTP Guide Transfer Mode :Active 2. Now you have FileZilla installed. Load the program. Click > File (in the top left corner) > Site Manager. Now click ‘New Site’ and fill in the details (as shown below) Host: ftp.students.bl.rdi.co.uk Protocol : FTP – File Transfer Protocol Encryption : Use Explicit FTP over TLS if available Logon Type: Change to ‘Ask for password’ User: Your STU Number Password: colour and number combination provided to you by to student support coordinator. If you have not received your username and password or have difficulties connecting to the server the please contact help@arden.ac.uk Transfer Mode :Active

‘The Students Server’ on the right hand side. Now click ‘Connect’ You will now see a screen (shown below). 3. Locate the file(s) that you wish you upload/move onto the student server. Now, simply select the files in question, click and drag from ‘Your Computer’ on the left hand side to ‘The Students Server’ on the right hand side.

Your files will now be on the server. 4. Finally, test your files are successfully there and notify your student coordinator and/or tutor. To test the files, open your web browser (for example Firefox, Internet Explorer). Now using the following url: http://students.bl.rdi.co.uk/Your_STU_Number/File_Name Please note, you will have to type your student number and the exact file name including file extension (i.e. doc, pdf) in the part of the link highlighted in red. The file you test will now appear within the web browser or be downloaded to your computer. Any more tips or pointers regarding this or for technical advice please do not hesitate to contact us: help@arden.ac.uk