Copyright © Texas Education Agency, 2013. All rights reserved.1 Web Technologies Web Administration.

Slides:



Advertisements
Similar presentations
WordPress Installation for Beginners Sheila Bergman
Advertisements

The Internet.
3.02H Publishing a Website 3.02 Develop webpages..
Basic Internet Terms Digital Design. Arpanet The first Internet prototype created in 1965 by the Department of Defense.
1 Web Servers / Deployment Alastair Dawes Original by Bhupinder Reehal.
Web Servers How do our requests for resources on the Internet get handled? Can they be located anywhere? Global?
CIS101 Introduction to Computing Week 05. Agenda Your questions CIS101 Survey Introduction to the Internet & HTML Online HTML Resources Using the HTML.
The Internet and the World Wide Web. Una DooneyThe Internet and WWWSlide 2 What is the Internet? A collection of networks (LANS and WANS) around the world.
Advanced Web 2012 Lecture 2 Sean Costain How the Web Works - Refresh Sean Costain 2012 The web is a matrix of servers that handle client requests.
Chapter 4 Creating a Website from an InDesign Layout.
Lesson 19 Internet Basics.
JOIN A COMMUNITY OF 80,000 E-COMMERCE SITES WORLDWIDE.
Web Design Terms and Concepts Ms. Scales. Q. What is a Server? A. A server is a computer that stores information many people can access. It runs special.
LEARN THE QUICK AND EASY WAY! VISUAL QUICKSTART GUIDE HTML and CSS 8th Edition Chapter 21: Publishing Your Pages on the Web.
Create a Website Session I Key Components Hands-on HTML.
 Internet vs WWW  Pages vs Sites  How the Internet Works  Getting a Web Presence.
Copyright © cs-tutorial.com. Introduction to Web Development In 1990 and 1991,Tim Berners-Lee created the World Wide Web at the European Laboratory for.
Introduction to Interactive Media 05: How the Web Works: Domain names, Hosting and Fundamentals of HTML.
Syllabus outcomes Describes and applies problem-solving processes when creating solutions Designs, produces and evaluates appropriate solutions.
1 Chapter 2 (Continued) Section 2.2 Section 2.2. Internet Service Provider (ISP) ISP - a company that connects you through your communications line to.
© 2007 Cisco Systems, Inc. All rights reserved.Cisco Public ITE PC v4.0 Chapter 1 1 Network Services Networking for Home and Small Businesses – Chapter.
Web Page Design I Retest Terms Review. 1. Web pages are created using a language known as ___________. The coding of this language must follow specific.
XHTML Introductory1 Linking and Publishing Basic Web Pages Chapter 3.
Web Page Design I Basic Computer Terms “How the Internet & the World Wide Web (www) Works”
Network Services Networking for Home & Small Business.
 2001 Prentice Hall, Inc. All rights reserved. 1 Chapter 21 - Web Servers (IIS, PWS and Apache) Outline 21.1 Introduction 21.2 HTTP Request Types 21.3.
ITIS 1210 Introduction to Web-Based Information Systems Chapter 23 How Web Host Servers Work.
Forensic and Investigative Accounting Chapter 14 Internet Forensics Analysis: Profiling the Cybercriminal © 2005, CCH INCORPORATED 4025 W. Peterson Ave.
Chapter 1: The Internet and the WWW CIS 275—Web Application Development for Business I.
Web Space CIS 141 – Basic Computer Literacy Western Kentucky University Bowling Green, KY.
How Does the Internet Work? Protocols Protocols are rules that describe how computers communicate and exchange data. The Internet has a series of these.
 Research on the best software that suits your preference. I recommend Adobe Dreamweaver as that is what I’m using to create my website.
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.
The Internet The internet is simply a worldwide computer network that uses standardised communication protocols to transmit and exchange data.
Chapter 8 Browsing and Searching the Web. 2Practical PC 5 th Edition Chapter 8 Getting Started In this Chapter, you will learn: − What is a Web page −
1 Welcome to CSC 301 Web Programming Charles Frank.
Structure of the Internet. Internet Structure LAN ISP Internet Backbone.
Copyright © 2006 Pearson Addison-Wesley. All rights reserved. 3-1.
Application Layer Honolulu Community College Cisco Academy Training Center Semester 1 Version
Introduction to Internet. Chapter 1 Objectives Origins of the Internet Packets and Routers TCP/IP DNS HTTP URL Client-Server.
TCP/IP (Transmission Control Protocol / Internet Protocol)
INTERNET PROTOCOLS. Microsoft’s Internet Information Server Home Page Figure IT2031 UNIT-3.
CSI 3125, Preliminaries, page 1 Networking. CSI 3125, Preliminaries, page 2 Networking A network represents interconnection of computers that is capable.
WHAT IS E-COMMERCE? E-COMMERCE is a online service that helps the seller/buyer complete their transaction through a secure server. Throughout the past.
Introduction to Interactive Media Choosing a Domain Name and a Web Host.
The Internet. Important Terms Network Network Internet Internet WWW (World Wide Web) WWW (World Wide Web) Web page Web page Web site Web site Browser.
G046 Lecture 04 Task C Briefing Notes Mr C Johnston ICT Teacher
1 Web Technologies Website Publishing/Going Live! Copyright © Texas Education Agency, All rights reserved.
Internet and World Wide Web Introduction to the Internet.
COMP3121 E-Commerce Technologies Richard Henson University of Worcester December 2009.
Introduction to the Internet
Understanding Web Server Programming
3.02H Publishing a Website 3.02 Develop webpages..
CISC103 Web Development Basics: Web site:
Introduction to Web programming
Copyright © 2006 Pearson Addison-Wesley. All rights reserved.
Networking for Home and Small Businesses – Chapter 6
Web Development & Design Chapter 1, Sections 4, 5 & 6
Networking for Home and Small Businesses – Chapter 6
CS222 Web Programming Course Outline
CISC103 Web Development Basics: Web site:
Copyright © 2006 Pearson Addison-Wesley. All rights reserved.
SEEM4570 Tutorial 07: Filezilla and PHP
Web Design & Development
PHP and Forms.
Web Servers / Deployment
4.02 Develop web pages using various layouts and technologies.
Protocols 2 Key Revision Points.
Networking for Home and Small Businesses – Chapter 6
File Transfer Protocol
Presentation transcript:

Copyright © Texas Education Agency, All rights reserved.1 Web Technologies Web Administration

Topics to Cover Protocols & How the Web Works Setting up A Domain Name Understanding Web Servers Personal Web Server Professional Web Hosting Uploading Files to A Web Server IT: Web Technologies – Web Administration2Copyright © Texas Education Agency, All rights reserved.

Web Administration Knowing how to design a website is only part of the job of a Webmaster. Most clients expect their webmaster to also: How information is transferred from server to client. Acquire the Domain Name Setup the Web Hosting Get the Site Online Knowing these processes will make you a much more valuable player in the web design industry. IT: Web Technologies – Web Administration3Copyright © Texas Education Agency, All rights reserved.

Protocols The Internet consists of two basic types of computers… servers & clients. These computers often were of different types and used different operating systems. All computers on the Internet must be able to communicate Protocol is an agreed upon set of rules for successful communication among computers on the Internet. IT: Web Technologies – Web Administration4Copyright © Texas Education Agency, All rights reserved.

Protocols TCP/IP (TCP) Transmission Control Protocol Was selected as the underlying method of communicating among computers on the Internet. Specifies how information is transferred. There are different rules for different types of information. Generally all information is: broken into small packets 1500 characters in length. sent to its destination along different paths. IT: Web Technologies – Web Administration5Copyright © Texas Education Agency, All rights reserved.

Protocols Under TCP, there are specific methods of communication for each type of information sent across the Internet: http – hypertext transfer protocol Communicates with browsers to send web page packets ftp – file transfer protocol Used by FTP Clients to transfer file packets pop – Post office protocol ( ) Used by clients to send/receive IT: Web Technologies – Web Administration6Copyright © Texas Education Agency, All rights reserved.

Protocols (IP) Internet Protocol Specifies that every computer on the Internet must have a unique Internet Protocol Address. Packets of information contain the sending and receiving computers IP Address much like an letter. IT: Web Technologies – Web Administration7Copyright © Texas Education Agency, All rights reserved.

Protocols So how does the web page get from the server to your computer? Your computer send a request to the server for a specific page. The server get the page and breaks it into packets. Packets are send along different random paths to your computer. Your computer confirms that all packets have been received. Your computer reassembles the packets. IT: Web Technologies – Web Administration8Copyright © Texas Education Agency, All rights reserved.

Packet Illustration IT: Web Technologies – Web Administration9 Server Client How many different paths can you create from the Server to the Client? Any of these paths can be taken by a single data packet. Copyright © Texas Education Agency, All rights reserved.

Acquiring a Domain Name Domain Name vs. Web Hosting Many people believe both are one in the same. Doman Name Registration gives you exclusive rights to use a specific domain name AND specifies where the web site is stored. Web Hosting is the physical storage of your website’s files on a web server IT: Web Technologies – Web Administration10Copyright © Texas Education Agency, All rights reserved.

Acquiring a Domain Name What is the process if setting up a domain name? A. Select an available domain name. B. Register the domain name. C. Enter Name Server addresses. Name Server addresses IT: Web Technologies – Web Administration11Copyright © Texas Education Agency, All rights reserved.

Acquiring a Domain Name Guided Practice 1 From your computer, go to Find an available domain name for a website that you might use for a personal website. IT: Web Technologies – Web Administration12Copyright © Texas Education Agency, All rights reserved.

Website Hosting Operating Systems - The OS tells the hardware what to do, and interacts with the Application Software. IT: Web Technologies – Web Administration13 Hardware Software Operating System Copyright © Texas Education Agency, All rights reserved.

Website Hosting Professional Web Service Provider Professional web hosting company Entry level around $5 per month for basic hosting services. Will provide you with 2 Name Server addresses and access information. IT: Web Technologies – Web Administration14Copyright © Texas Education Agency, All rights reserved.

Website Hosting Shared vs. Dedicated Hosting Shared Hosting You share a server with other websites. Websites are typically small and would not come close to using the resources of an entire server. Price is usually very low starting around $5 per month. Dedicated Hosting The entire server is dedicated to your site. Typically for site with high bandwidth or storage requirements. Usually expensive, starting around $300 per month IT: Web Technologies – Web Administration15Copyright © Texas Education Agency, All rights reserved.

Website Hosting What to consider when selecting a Web Service Provider Price Disk or Storage Space Bandwidth Scripting & Database Capabilities Control Panel IT: Web Technologies – Web Administration16Copyright © Texas Education Agency, All rights reserved.

Website Hosting Personal Web Server A server running on your personal computer. Can be made out of any Desktop PC Not necessary to view basic HTML pages. Necessary for processing server side scripting, such as PHP, locally. Required Software Apache Web Server Optional Software for Server Side Scripting PHP – For PHP Scripting Capabilities MySQL – For Database Capabilities IT: Web Technologies – Web Administration17Copyright © Texas Education Agency, All rights reserved.

Website Hosting Guided Practice II Go to a website that sells shared servers Identify the following information: Price of the cheapest shared server. Server space included in plan. Bandwidth included in plan. IT: Web Technologies – Web Administration18Copyright © Texas Education Agency, All rights reserved.

Getting Your Site Online Before your website can be accessible on the Internet it must be uploaded to a web server. You will need a program capable of transferring files from one computer to another, called an FTP client. Many programs, such as Dreamweaver, have an FTP client built in. FileZilla is a free FTP client that can be used to easily upload files to your web server. IT: Web Technologies – Web Administration19Copyright © Texas Education Agency, All rights reserved.

Getting Your Site Online When you register for web hosting, you will be provided with the following information. Name Servers Needed by your domain register FTP Username FTP Password Host Address Port – Usually 21 unless told otherwise by your host. IT: Web Technologies – Web Administration20Copyright © Texas Education Agency, All rights reserved.

Getting Your Site Online IT: Web Technologies – Web Administration21 Required Settings Host Username Password Port Copyright © Texas Education Agency, All rights reserved.

Getting Your Site Online IT: Web Technologies – Web Administration22 The left side is your computer(1), the right side is the web server(2). You should see a www and/or public_html directory on the server side. They point to the same place. All your web pages should be saved to that folder to be accessible online. Double click it to open it. Copyright © Texas Education Agency, All rights reserved.

Getting Your Site Online IT: Web Technologies – Web Administration23 Once in the www directory (3), you should see all your website files (4). FileZilla can transfer files both directions. To transfer files, just select the file or directory and drag it to the side you want to copy it to. Copyright © Texas Education Agency, All rights reserved.

Getting Your Site Online Once you have transferred your files from your computer to your web server, you can close FileZilla. If you cannot access your website, double check to make sure the files were transferred to the www or public_html folder. Both names point to the same directory. If your files are uploaded to any other folder, or outside of one of these folders, they will not show up. IT: Web Technologies – Web Administration24Copyright © Texas Education Agency, All rights reserved.