Interactive Module Uploading & Maintaining Websites

Size: px
Start display at page:

Download "Interactive Module Uploading & Maintaining Websites"

Transcription

1 Interactive Module Jason Mayo This slideshow plus files used today, will be placed on:

2 Talking about... Preparing for Upload Domains Hosting FTP DNS / Registrar Workflow Backup / Version Control Debugging

3 Finished Websites If anybody has finished their website, if you want, I can check over these at the end of this lesson to make sure they are ready for the web.

4 Preparing for Upload 1. Ensure all your links are working Check your website thoroughly, clicking every link. You don t want any dead links, these will put the user off coming back to your site. Ensure all link names are solid names, no spaces. For example: big long file name.html biglongfilename.html biglongfilename.html big_long_file_name.html INCORRECT INCORRECT CORRECT CORRECT File names with spaces in will look ugly on a server, when clicked: big%20long%20file%20name%20.html 2. Paths to images don t link to your computer files Check that your image paths link to your folder correctly, not to a weird folder structure on your computer. This should be fine if you have a nice/clean folder structure. For example: images/imagename.jpg CORRECT /Users/jasonmayo/websites/websitename/images/imagename.jpg INCORRECT

5 Preparing for Upload 3. Spell Check!!!! Please check all your spelling/grammar on your website before you put it online. There s nothing worse, than launching the site, and realising you spelt your address incorrectly! 4. Ensure no files are missing This is all down to your folder structures, ensure every file your linking to exists somewhere in your folders 5. Folders / Filenames are ALL in lowercase I can t stress enough how important this is (You will realise this later on in the slideshow...) BIG_LONG_FILE_NAME.html INCORRECT Big_Long_File_Name.html INCORRECT Big_long_file_name.html INCORRECT big_long_file_name.html CORRECT

6 To get online... Domain Server / Host User

7 Domain Names Boring Techy Stuff... Every server on the Internet has a unique number. It s called an IP address. A domain name is like an alias/name for that IP address a more memorable way of identifying a server on the Internet. For example: is the same as going to But it s a bit easier to remember, right? So we need to buy a Domain Name, to point to a server...

8 Available domain names.com.co.uk.info.net.org.edu.gov Every domain relates to something, and pretty much every country has it s own domain..ru.jp.es.de

9 Buying Domains 123 Reg 1&1 Internet Heart Internet (Don t buy hosting from these) (Don t buy hosting from these)

10 Hosting Once you have bought a domain, you need to point this to a server or a host. A server will have all of your website files on it. So when a user types in your domain, it loads this server up full of your files, and presents them with your website! But wait, there are a few different types of servers... Just like there are different types of computers (PC & Mac) there are different types of servers: Windows Servers Run windows based software on them e.g. Linux Servers Run everything else! ASP MS SQL.Net PHP MySQL Case Sensitive! Both servers will run HTML, CSS & Jquery. It s just good to choose the correct server, incase you want to expand your site. I.e, place a Blog on it using Wordpress etc

11 Hosting Continued Shared Server (All use the same IP Address) Dedicated Server Other Website Other Website Other Website Other Website Other Website Other Website Other Website Your Website Your Website After all this techy talk, you just need a Shared Linux server to run a small Portfolio site. It s just good to know the difference when your presented with them.

12 Buying Hosting One.com Rackspace Heart Internet Recommended for portfolio / small websites NOTE You can buy hosting AND domains combined with these companies

13 Choosing Hosting for Clients If you fancy moving into web design / development, then it s important to know what is right for your clients in terms of hosting. Things you need to consider: 1. How big is the website? This will mean choosing between a Shared or Dedicated service 2. Do they already own domains? A lot of clients will already own a domain, but will have jumped between hosting providers. So it will probably be your responsibility to link a domain with a hosting provider (DNS). 3. What is the site built with? This will mean choosing between a Windows or Linux server. If the sites built using PHP & MySQL you will mainly go with a Linux server 4. What is their budget? Getting quotes from hosting companies is good if your working on large sites, some companies can offer bespoke servers, which will save you and the client money. 5. Leave space for growth Ensure you leave enough space for the website to grow. For example if it s a shop, on startup they may have 20 products, but in a few months time, they may have 500.

14 DNS (Domain Name Servers) If you have previously bought a domain (or your client has) you will need to point it to a server. In technical terms this is done by changing the Domain Name Servers (DNS) Remember, earlier I said that Domains link to an IP addresses of a server? Well, a Domain Name Server keeps hold of this IP address. So changing the IP address on a DNS allows you to point a domain at any server you want. Allowing you to switch hosts/servers whenever you want. Generally this is done at the place you bought you domain from.

15 FTP FTP (File Transfer Protocol) is the simplest and most secure way to exchange files over the Internet. This basically allows you to Download or Upload sites from a server, quickly. FTP s coming in the form of Programs that you install on your computer. Connecting to your server via an FTP program will give you access to your server and all the files on it.

16 How FTP works... Your Computer FTP Program Server 1. Your website is on your computer. You then pass this on to the FTP program. 2. The FTP program processes these files and places them on the server. 3. Once they are on the server, they are viewable by people typing your website address in.

17 FTP Programs (Mac) Transmit 20 (Free Trial) Cyberduck Free FileZilla Free Recommended

18 FTP Programs (PC) Smart FTP 24 (Free Trial) FileZilla Free Recommended

19 Connecting to FTP Once we ve bought our Domain & Server/Hosting, our site is ready for upload AND we have our FTP program installed. It s time to upload our website, to do this we need to connect to our Server via our FTP program. 1. Launch the FTP program 2. Enter your Server Address (This is sometimes an IP address OR your domain, e.g. ftp. madebyshape.co.uk) 3. Enter your Server Username 4. Enter your Server Password 5. Hit Connect (Depending on which FTP program you use) 6. Once your connected you generally see a www. Or a public_html folder (If you bought hosting from one.com then you won t see any folders) choose one of these 7. Drag across your files, to that folder. 8. Let the files upload. 9. Done! NOTE Your Server Username, Password and Address will be sent to you in an when signing up for your Host. If this isn t sent in an , you may need to create it yourself by logging in to your host s website.

20 After Uploading... Ok, so your website is uploaded perfectly! Don t just stop here... You need to go and check your website is working correctly. Even though we prepared our site, something could still have gone wrong. If it s a client website, it s definitely important to check the site. Because it will be your responsibility if it isn t working.

21 #1: No Images Uh oh, Where are your images?!?!?! Sometimes you upload a site, to then realise that all your images are either invisible OR you have the dreaded little red cross. The reasons for this could be: 1. The image doesn t exist on the server This could be due to an error in uploading the site. So first check the image is on the server in the folder your locating it from 2. Your linking to an image that doesn t exist Check your Image paths in your HTML files, ensure its linking correctly. Ensure the path isn t linking to your computer. You spelt your image file names in Uppercase or with Spaces Tut Tut Tut... Go back and change all your file names to lowercase.

22 #2: Page Not Found / 404 Error Your clicking around your site, checking it s all fine and BAM, you hit a Page Not Found or a 404 Error. Below are a few examples on how to find and fix this problem: 1. Check the page exists on the server You may have missed uploading a page, or an error occurred. Reupload the file if it isn t on the server. 2. Check you are linking correctly to the page Ensure your link is pointing to your URL, not to your computer 3. External Links When linking to an external site or away from your site (Twitter etc) Make sure you put before the URL. 4. You spelt your file names in Uppercase or with Spaces HTEAHJJNGBDAGRWASFCARESEW!!!!!!!!! If your linking for pageone.html and the server version is PAGEONE.html the server will not be able to find this. Go back and change all your file names to lowercase.

23 #3: File List View If you load your site up and it looks something like this: You have either: 1. Don t have an index.html file in your main server folder OR 2. You have called it something else like, home.html or index2.html

24 #4: Slow Your links work fine, images are fine, index.html is in place but your site is loading really slow, and your images look like they are slowly revealing on the page. A few problems could be: 1. Check your image size If your stating in your HTML that the image should be 100px wide and 200px high. But your actual dimensions of the image are 5400px wide and 7000px high, then this will slow your site loading time down. Resize your images to the correct size 2. Server It may not be your problem, it might be a case of the Hosting / Server company are having a few problems or someone else on the shared server is hugging all the memory and power! 3. jquery Sometimes loading lots of jquery files can slow the site down. Possibly reduce the amount of jquery files, or Compress them using an online Javascript Compressor 4. Too much code If your CSS file contains lots of repeat code, then this will slow the site down because it has to keep rendering all of this code. Go back and possibly make some bits classes over ID s

25 Browser Checking Once your happy with your site online. Make sure you check it in all Browsers... Remember, it s not only you visiting the site, and everybody uses a different browser, and most browsers render code differently. Check your site in: Internet Explorer 7, 8, 9, 10 Firefox Chrome Safari Opera It may look the same in every browser if your lucky, but if it doesn t then you may need to tweak your CSS file slightly to make it work in all of the browsers. Common problems are usually, Margins, Padding, Widths and using techniques some browsers don t support (e.g. HTML5 or CSS3)

26 Browser Debugging Generally, Internet Explorer will mess something up (sigh) so rather than tweaking our main CSS file, we can specifically target each version of IE (Internet Explorer) with something called a conditional comment A conditional comment is basically saying: If the users browser is IE8, then load this other stylesheet and in coding terms this is how it looks: HTML <link rel= stylesheet type= text/css href= CSS/style.CSS > <![if IE 8]> <link rel= stylesheet type= text/css href= CSS/ie8style.CSS > <![endif]> So all we re doing is creating another stylesheet called ie8style.css and linking it in like we would normally do. Except we re wrapping the Conditional Comment around it. Now when the browser loads, and it s Internet Explorer 8, it will locate this stylesheet and amended the website to whatever we tell it to.

27 Debugging If you want to view the code, when the browser has rendered it Google Chromes Inspect Element allows you to view the code, sizes etc and makes debugging 100% easier.

28 Site is online and working... Phew! Your site is uploaded, debugged and working perfectly! Easy huh?! But, you may want to update your site again in the next month or so with a new piece of work, or add a new page. This is where maintaining your site comes in, and the next few slides will recommend little bits to make this process easier.

29 Cache Every time you visit a website, all the files including the CSS, Images, HTML gets downloaded to your computer to a folder called cache This speeds up the process of loading the site, the next time you visit. By letting the browser load files from your computer, rather than the server. Generally this is good. But for a web designer/developer updating a website that s on a server can be a nightmare. If you ve uploaded a file that you ve just changed, and you then go to preview the file, and it doesn t update. This is possibly because the browser is being lazy and it s loading the cached file, and not recognised the file has been updated. To get around this you sometimes need to clear your Cached files.

30 Version Control Version Control is the ability to save copies of files/folders whenever you make a change (minor or major) so you have the ability to go back, incase you make a mistake. Tips to version control: 1. Create a backup Before changing any files, you could back them up. It s sometimes good to create a folder inside your website folder called versions or backup and then simply copy and paste the files your going to edit, into there. 2. Naming files Once you ve created these backup files, its possibly worth renaming them. Some people label them by version number, others by date/time: indexv.1.1.html index html This way its easy to find the files to go back to. Using version control will help cover your back, and you can easily revert back to saved files and add features back in, which you recently removed. Some developers also keep a note file which states everything that has been altered.

31 Version Control for Designers

32 Kaleidoscope If you ve saved backup files, but don t know what has changed. You can use Comparing apps such as Kaleidoscope that allow you to load 2 files up, and it will look for changes.

33 Frameworks / Boilerplates This won t necessarily boost your workflow up a bit on sites currently built. But it will speed things up on the next site you build. Frameworks / Boilerplates are folders that already contain fundamental files. So you can quickly create websites, without the initial setup. You don t need to create all the folders, HTML & CSS files, link them up etc. It is all done for you. Generally Frameworks / Boilerplates contain: HTML & CSS files, already linked and with basic structure Reset File Favicons / Icons jquery plugins You can either create your own, or download them. A good HTML5 boilerplate can be downloaded here:

34 Bit s you may have missed... After uploading sites, you may notice minor things that are missing. Generally people forget about these little bits: 1. Favicons These are the little icons that site next to your website address. Most of the time they are logo or a colour. You can easily add these by creating the icon in Photoshop and then linking to it in the HTML. HTML <head> <link rel= shortcut icon href= images/favicon.ico type= image/xicon > </head> 2. Document / Site Titles If you look to the top of your browser and it says Untitled Document then you haven t entered a title for that page. Generally titles should mention what your site is called, then the page that your on. HTML 1 <title>about Us / Shape Design Studio</title> 3. s

35 Programs we use... It s not all about sticking to the Adobe suite, there are some programs that can help you work quicker, and that are used within industry. It s worth learning other programs... Coda VMWare/Parallels MAMP Codekit Wunderlist Coding Editor Windows on a Mac Local Server Coding Helper! Project Management Others: Sequel Pro Tower Transmit Kaleidoscope LESS

36 Next Time... Designing for Mobile (AM) Coding for Mobile (AM)

Lesson 7 - Website Administration

Lesson 7 - Website Administration Lesson 7 - Website Administration If you are hired as a web designer, your client will most likely expect you do more than just create their website. They will expect you to also know how to get their

More information

CEFNS Web Hosting a Guide for CS212

CEFNS Web Hosting a Guide for CS212 CEFNS Web Hosting a Guide for CS212 INTRODUCTION: TOOLS: In CS212, you will be learning the basics of web development. Therefore, you want to keep your tools to a minimum so that you understand how things

More information

ITP 101 Project 3 - Dreamweaver

ITP 101 Project 3 - Dreamweaver ITP 101 Project 3 - Dreamweaver Project Objectives You will also learn how to make a website outlining your company s products, location, and contact info. Project Details USC provides its students with

More information

Synthesis Migration Guide

Synthesis Migration Guide Synthesis Migration Guide The purpose of this guide is to provide you with simple step- by- step instructions for migrating your WordPress website from its current hosting to a premium managed Synthesis

More information

Shared Hosting. Getting Started Guide. Your First Website Online. Shared Hosting// Getting Started Guide

Shared Hosting. Getting Started Guide. Your First Website Online. Shared Hosting// Getting Started Guide Getting Started Guide Shared Hosting Your First Website Online Getting Started Guide Page 1 Getting Started Guide: Shared Hosting Version 2.0 (04.22.10) Copyright 2010. All rights reserved. Distribution

More information

Shared Hosting. Getting Started Guide. Your First Website Online. Shared Hosting// Getting Started Guide

Shared Hosting. Getting Started Guide. Your First Website Online. Shared Hosting// Getting Started Guide Getting Started Guide Shared Hosting Your First Website Online Getting Started Guide Page 1 Getting Started Guide: Shared Hosting Version 2.3 (1.6.2012) Copyright 2012. All rights reserved. Distribution

More information

Vodafone Hosted Services. Getting started. User guide

Vodafone Hosted Services. Getting started. User guide Vodafone Hosted Services Getting started User guide Vodafone Hosted Services getting started Welcome. Vodafone Hosted Services has been designed to make it as easy as possible to keep control over your

More information

The easy way to a nice looking website design. By a total non-designer (Me!)

The easy way to a nice looking website design. By a total non-designer (Me!) The easy way to a nice looking website design By a total non-designer (Me!) Website Refresher Three types of Website 1.Hand rolled HTML. Lightweight static pages. 2.Scripted Website. (PHP, ASP.NET etc.)

More information

Setting Up a Development Server

Setting Up a Development Server 2 Setting Up a Development Server If you wish to develop Internet applications but don t have your own development server, you will have to upload every modification you make to a server somewhere else

More information

SURPASS HOSTING SERVICE GETTING STARTED AND OPERATIONS GUIDE

SURPASS HOSTING SERVICE GETTING STARTED AND OPERATIONS GUIDE SURPASS HOSTING SERVICE GETTING STARTED AND OPERATIONS GUIDE Welcome To Surpass Hosting Service. This document contains instructions to help you get up and running with your new service. The instructions

More information

GET YOUR BUSINESS ONLINE FOR NON-TECHIES. Domains, websites, email, SEO basics and analytics with Rob Riley

GET YOUR BUSINESS ONLINE FOR NON-TECHIES. Domains, websites, email, SEO basics and analytics with Rob Riley GET YOUR BUSINESS ONLINE FOR NON-TECHIES Domains, websites, email, SEO basics and analytics with Rob Riley OBJECTIVES Domain registration, DNS and hosting basics. Web and Email hosting setup, packages

More information

Blueball Design Dynamic Content 2 Stack Readme Manual v1.0

Blueball Design Dynamic Content 2 Stack Readme Manual v1.0 Blueball Design Dynamic Content 2 Stack Readme Manual v1.0 A unique responsive stack that dynamically populates and updates a content area within the stack using a warehoused external XML flat text file

More information

Hello. What s inside? Ready to build a website?

Hello. What s inside? Ready to build a website? Beginner s guide Hello Ready to build a website? Our easy-to-use software allows you to create and customise the style and layout of your site without having to understand any coding or HTML. In this guide

More information

Adobe Dreamweaver CC 14 Tutorial

Adobe Dreamweaver CC 14 Tutorial Adobe Dreamweaver CC 14 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site

More information

THE PLAN FOR TODAY. Welcome to Camp Tech!

THE PLAN FOR TODAY. Welcome to Camp Tech! CAMPTECH.CA THE PLAN FOR TODAY 1. What s the Internet? What s a website? 2. WordPress basics What is WordPress? WordPress.org vs WordPress.com Installing WordPress 3. Add your content Posts, pages, menus,

More information

UH CMS Basics. Cascade CMS Basics Class. UH CMS Basics Updated: June,2011! Page 1

UH CMS Basics. Cascade CMS Basics Class. UH CMS Basics Updated: June,2011! Page 1 UH CMS Basics Cascade CMS Basics Class UH CMS Basics Updated: June,2011! Page 1 Introduction I. What is a CMS?! A CMS or Content Management System is a web based piece of software used to create web content,

More information

Getting Started with WebSite Tonight

Getting Started with WebSite Tonight Getting Started with WebSite Tonight WebSite Tonight Getting Started Guide Version 3.0 (12.2010) Copyright 2010. All rights reserved. Distribution of this work or derivative of this work is prohibited

More information

GEOG 351: Multimedia Cartography Lab Simon Fraser University Department of Geography Lab #1: Creating your own website

GEOG 351: Multimedia Cartography Lab Simon Fraser University Department of Geography Lab #1: Creating your own website GEOGRAPHY 351: MULTIMEDIA CARTOGRAPHY FALL 2013 SFU 1 GEOG 351: Multimedia Cartography Lab Simon Fraser University Department of Geography Lab #1: Creating your own website Instructor Britta Ricker bricker@sfu.ca

More information

How to Create and Send a Froogle Data Feed

How to Create and Send a Froogle Data Feed How to Create and Send a Froogle Data Feed Welcome to Froogle! The quickest way to get your products on Froogle is to send a data feed. A data feed is a file that contains a listing of your products. Froogle

More information

Write a Web Application for Free Edition 2

Write a Web Application for Free Edition 2 Write a Web Application for Free Edition 2 Thomas Davenport This book is for sale at http://leanpub.com/writeawebapplication4free This version was published on 2016-01-27 This is a Leanpub book. Leanpub

More information

File Transfer Protocol (FTP) Instructions

File Transfer Protocol (FTP) Instructions File Transfer Protocol (FTP) Instructions How to upload your website to the AUI server The FTP client most used for PCs is WS_FTP. It is already downloaded onto your Lab computer desktop, and looks like

More information

Setting up a local working copy with SVN, MAMP and rsync. Agentic - 2009

Setting up a local working copy with SVN, MAMP and rsync. Agentic - 2009 Setting up a local working copy with SVN, MAMP and rsync Agentic - 2009 Get MAMP You can download MAMP for MAC at this address : http://www.mamp.info/en/downloads/index.html Install MAMP in your APPLICATION

More information

Joomla + Virtuemart 2 Template CoolMart TUTORIAL. INSTALLATION CoolMart Template (in 2 Methods):

Joomla + Virtuemart 2 Template CoolMart TUTORIAL. INSTALLATION CoolMart Template (in 2 Methods): // Flexible Joomla + Virtuemart 2 Template CoolMart FOR VIRTUEMART 2.0.x and Joomla 2.5.xx // version 1.0 // author Flexible Web Design Team // copyright (C) 2011- flexiblewebdesign.com // license GNU/GPLv3

More information

Getting Started with Dynamic Web Sites

Getting Started with Dynamic Web Sites PHP Tutorial 1 Getting Started with Dynamic Web Sites Setting Up Your Computer To follow this tutorial, you ll need to have PHP, MySQL and a Web server up and running on your computer. This will be your

More information

Guidance for IA DMM: Connecting Your Computer to FSU Video File Server

Guidance for IA DMM: Connecting Your Computer to FSU Video File Server 1 Guidance for IA DMM: Connecting Your Computer to FSU Video File Server This guide will walk you through the process of connecting your computer to the FSU Video File Server and then uploading video files

More information

The Social Accelerator Setup Guide

The Social Accelerator Setup Guide The Social Accelerator Setup Guide Welcome! Welcome to the Social Accelerator setup guide. This guide covers 2 ways to setup SA. Most likely, you will want to use the easy setup wizard. In that case, you

More information

Create a GAME PERFORMANCE Portfolio with Microsoft Word

Create a GAME PERFORMANCE Portfolio with Microsoft Word Create a GAME PERFORMANCE Portfolio with Microsoft Word Planning A good place to start is on paper. Get a sheet of blank paper and just use a pencil to indicate where the content is going to be positioned

More information

JTouch Mobile Extension for Joomla! User Guide

JTouch Mobile Extension for Joomla! User Guide JTouch Mobile Extension for Joomla! User Guide A Mobilization Plugin & Touch Friendly Template for Joomla! 2.5 Author: Huy Nguyen Co- Author: John Nguyen ABSTRACT The JTouch Mobile extension was developed

More information

CAS CLOUD WEB USER GUIDE. UAB College of Arts and Science Cloud Storage Service

CAS CLOUD WEB USER GUIDE. UAB College of Arts and Science Cloud Storage Service CAS CLOUD WEB USER GUIDE UAB College of Arts and Science Cloud Storage Service Windows Version, April 2014 Table of Contents Introduction... 1 UAB Software Policies... 1 System Requirements... 2 Supported

More information

Set up your first free website

Set up your first free website How to Set up your first free website There are many websites available across the web that allow you to create a whole website for free, without any knowledge of scripts or coding. Think that sounds too

More information

Hello. What s inside? Ready to build a website?

Hello. What s inside? Ready to build a website? Beginner s guide Hello Ready to build a website? Our easy-to-use software allows to create and customise the style and layout of your site without you having to understand any coding or HTML. In this guide

More information

Accessing your Staff (N and O drive) files from off campus

Accessing your Staff (N and O drive) files from off campus Accessing your Staff (N and O drive) files from off campus It is possible to access your N and O drive files while you are off campus, for example whilst working from home or travelling. This document

More information

WP Popup Magic User Guide

WP Popup Magic User Guide WP Popup Magic User Guide Plugin version 2.6+ Prepared by Scott Bernadot WP Popup Magic User Guide Page 1 Introduction Thank you so much for your purchase! We're excited to present you with the most magical

More information

Livezilla How to Install on Shared Hosting http://www.jonathanmanning.com By: Jon Manning

Livezilla How to Install on Shared Hosting http://www.jonathanmanning.com By: Jon Manning Livezilla How to Install on Shared Hosting By: Jon Manning This is an easy to follow tutorial on how to install Livezilla 3.2.0.2 live chat program on a linux shared hosting server using cpanel, linux

More information

Lets Get Started In this tutorial, I will be migrating a Drupal CMS using FTP. The steps should be relatively similar for any other website.

Lets Get Started In this tutorial, I will be migrating a Drupal CMS using FTP. The steps should be relatively similar for any other website. This tutorial will show you how to migrate your website using FTP. The majority of websites are just files, and you can move these using a process called FTP (File Transfer Protocol). The first thing this

More information

Adobe Dreamweaver - Basic Web Page Tutorial

Adobe Dreamweaver - Basic Web Page Tutorial Adobe Dreamweaver - Basic Web Page Tutorial Window Elements While Dreamweaver can look very intimidating when it is first launched it is an easy program. Dreamweaver knows that your files must be organized

More information

PERSONAL WEBSITE DEVELOPMENT 101. Brought to you by the UB Graduate Student Association webmasters: Holly Keily & John Beverley

PERSONAL WEBSITE DEVELOPMENT 101. Brought to you by the UB Graduate Student Association webmasters: Holly Keily & John Beverley PERSONAL WEBSITE DEVELOPMENT 101 Brought to you by the UB Graduate Student Association webmasters: Holly Keily & John Beverley THE BIG PICTURE You need a WEBSITE And we are here to help you build one You

More information

How to Configure Outlook 2013 to connect to Exchange 2010

How to Configure Outlook 2013 to connect to Exchange 2010 How to Configure Outlook 2013 to connect to Exchange 2010 Outlook 2013 will install and work correctly on any version of Windows 7 or Windows 8. Outlook 2013 won t install on Windows XP or Vista. 32-bit

More information

educ Office 365 email: Remove & create new Outlook profile

educ Office 365 email: Remove & create new Outlook profile Published: 29/01/2015 If you have previously used Outlook the with the SCC/SWO service then once you have been moved into Office 365 your Outlook will need to contact the SCC/SWO servers one last time

More information

How to use Mints@Home

How to use Mints@Home How to use Mints@Home Citrix Remote Access gives Mints users the ability to access University Of Cambridge and MINTS resources from any computer, anywhere in the world,. The service requires a high-speed

More information

How to start with 3DHOP

How to start with 3DHOP How to start with 3DHOP Package content, local setup, online deployment http://3dhop.net 30/6/2015 The 3DHOP distribution Where to find it, what s inside The 3DHOP distribution package From the page http://3dhop.net/download.php

More information

SchoolBooking SSO Integration Guide

SchoolBooking SSO Integration Guide SchoolBooking SSO Integration Guide Before you start This guide has been written to help you configure SchoolBooking to operate with SSO (Single Sign on) Please treat this document as a reference guide,

More information

A User s Guide to Helm

A User s Guide to Helm A User s Guide to Helm WebHost Automation Ltd http://www.webhostautomation.com/ January 2006 Doc: HELM300.02.09 Complying with all applicable copyright laws is the responsibility of the user. Without limiting

More information

Accessing your Exchange Mailbox using an Internet Browser

Accessing your Exchange Mailbox using an Internet Browser Accessing your Exchange Mailbox using an Internet Browser The best way to access your Exchange mailbox on a PC or Mac is by using Outlook. This isn t always possible, or convenient, but Exchange also allows

More information

Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website

Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website April 16 2012 The following instructions are to show you how to map your Home drive using ITS s Network in order to publish a website

More information

Welcome to ECBuzz.com! Please go through this document carefully to make the experience of owning and using a website an enjoyable one.

Welcome to ECBuzz.com! Please go through this document carefully to make the experience of owning and using a website an enjoyable one. Sales call: 90116 90305 Sales email: sales@ecbuzz.com Support email: support@ecbuzz.com Welcome to ECBuzz.com! Please go through this document carefully to make the experience of owning and using a website

More information

Content Management System User Guide

Content Management System User Guide Content Management System User Guide support@ 07 3102 3155 Logging in: Navigate to your website. Find Login or Admin on your site and enter your details. If there is no Login or Admin area visible select

More information

Chapter 14: Links. Types of Links. 1 Chapter 14: Links

Chapter 14: Links. Types of Links. 1 Chapter 14: Links 1 Unlike a word processor, the pages that you create for a website do not really have any order. You can create as many pages as you like, in any order that you like. The way your website is arranged and

More information

Contents First Time Setup... 2 Setting up the Legal Vault Client (KiteDrive)... 3 Setting up the KiteDrive Outlook Plugin... 10 Using the Legal Vault

Contents First Time Setup... 2 Setting up the Legal Vault Client (KiteDrive)... 3 Setting up the KiteDrive Outlook Plugin... 10 Using the Legal Vault Contents First Time Setup... 2 Setting up the Legal Vault Client (KiteDrive)... 3 Setting up the KiteDrive Outlook Plugin... 10 Using the Legal Vault Outlook Plugin... 13 Using KiteDrive to Send Large

More information

css href title software blog domain HTML div style address img h2 tag maintainingwebpages browser technology login network multimedia font-family

css href title software blog domain HTML div style address img h2 tag maintainingwebpages browser technology login network multimedia font-family technology software href browser communication public login address img links social network HTML div style font-family url media h2 tag handbook: id domain TextEdit blog title PORT JERVIS CENTRAL SCHOOL

More information

CREATING YOUR ONLINE PRESENCE

CREATING YOUR ONLINE PRESENCE CREATING YOUR ONLINE PRESENCE Congratulations on signing up for your webhosting package, you ve just completed the first and most important step in establishing your online presence. There are just a few

More information

Password Memory 6 User s Guide

Password Memory 6 User s Guide C O D E : A E R O T E C H N O L O G I E S Password Memory 6 User s Guide 2007-2015 by code:aero technologies Phone: +1 (321) 285.7447 E-mail: info@codeaero.com Table of Contents Password Memory 6... 1

More information

Advanced Online Media Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication

Advanced Online Media Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication Advanced Online Media Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication Using JQuery to Make a Photo Slideshow This exercise was modified from the slideshow

More information

Caldes CM12: Content Management Software Introduction v1.9

Caldes CM12: Content Management Software Introduction v1.9 Caldes CM12: Content Management Software Introduction v1.9 Enterprise Version: If you are using Express, please contact us. Background Information This manual assumes that you have some basic knowledge

More information

Joomla! 2.5.x Training Manual

Joomla! 2.5.x Training Manual Joomla! 2.5.x Training Manual Joomla is an online content management system that keeps track of all content on your website including text, images, links, and documents. This manual includes several tutorials

More information

Introduction... 1. Connecting Via FTP... 4. Where do I upload my website?... 4. What to call your home page?... 5. Troubleshooting FTP...

Introduction... 1. Connecting Via FTP... 4. Where do I upload my website?... 4. What to call your home page?... 5. Troubleshooting FTP... This guide is designed to show you the different ways of uploading your site using ftp, including the basic principles of understanding and troubleshooting ftp issues. P a g e 0 Introduction... 1 When

More information

DropSend Getting Started Guide

DropSend Getting Started Guide DropSend Getting Started Guide DropSend Ltd. 2012 Step 1: How to send a file without registration If you want to quickly send a large file, you can do it from the homepage in just a couple of clicks. Here

More information

Quick Reference / Install Guide v1.3

Quick Reference / Install Guide v1.3 v1.3 Table of Contents License... 2 Supported Languages Disclaimer... 2 Roadmap... 2 Wordpress Support... 2 Twitter, Facebook / Social Media Support... 2 Installation... 3 Installation requirements...

More information

ios App for Mobile Website! Documentation!

ios App for Mobile Website! Documentation! ios App for Mobile Website Documentation What is IOS App for Mobile Website? IOS App for Mobile Website allows you to run any website inside it and if that website is responsive or mobile compatible, you

More information

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business 2015 Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business This manual will take you through all the areas that you are likely to use in order to maintain, update

More information

Altima Lookbook Free Extension v. 0.1.0

Altima Lookbook Free Extension v. 0.1.0 Altima Interactive 2012 Altima Interactive www.altima.net.au Altima Lookbook Free Extension v. 0.1.0 Compatibility: Community Edition: 1.4.x.x, 1.5.x.x, 1.6.x.x Enterprise Edition: 1.9 and later Installation

More information

Content Management System

Content Management System Content Management System XT-CMS INSTALL GUIDE Requirements The cms runs on PHP so the host/server it is intended to be run on should ideally be linux based with PHP 4.3 or above. A fresh install requires

More information

Quick Start Guide. Hosting Your Domain

Quick Start Guide. Hosting Your Domain Quick Start Guide Hosting Your Domain http://www.names.co.uk/support/ Table of Contents Web Hosting... 3 FTP (File Transfer Protocol)... 3 File Manager... 6 SiteMaker... 7 2 Please keep these documents

More information

HowTo. Planning table online

HowTo. Planning table online HowTo Project: Description: Planning table online Installation Version: 1.0 Date: 04.09.2008 Short description: With this document you will get information how to install the online planning table on your

More information

Web Development. How the Web Works 3/3/2015. Clients / Server

Web Development. How the Web Works 3/3/2015. Clients / Server Web Development WWW part of the Internet (others: Email, FTP, Telnet) Loaded to a Server Viewed in a Browser (Client) Clients / Server Client: Request & Render Content Browsers, mobile devices, screen

More information

CheckBook Pro 2 Help

CheckBook Pro 2 Help Get started with CheckBook Pro 9 Introduction 9 Create your Accounts document 10 Name your first Account 11 Your Starting Balance 12 Currency 13 Optional password protection 14 We're not done yet! 15 AutoCompletion

More information

FREE VERSION. Created by: Jason Nesbitt Mobile App Development Guide

FREE VERSION. Created by: Jason Nesbitt Mobile App Development Guide FREE VERSION Created by: Jason Nesbitt Mobile App Development Guide Quickly learn all of the necessary skills needed to build your very own customisable mobile apps. Important: Download Example Files by

More information

Enterprise Remote Control 5.6 Manual

Enterprise Remote Control 5.6 Manual Enterprise Remote Control 5.6 Manual Solutions for Network Administrators Copyright 2015, IntelliAdmin, LLC Revision 3/26/2015 http://www.intelliadmin.com Page 1 Table of Contents What is Enterprise Remote

More information

Setting Up Dreamweaver for FTP and Site Management

Setting Up Dreamweaver for FTP and Site Management 518 442-3608 Setting Up Dreamweaver for FTP and Site Management This document explains how to set up Dreamweaver CS5.5 so that you can transfer your files to a hosting server. The information is applicable

More information

Dreamweaver and Fireworks MX Integration Brian Hogan

Dreamweaver and Fireworks MX Integration Brian Hogan Dreamweaver and Fireworks MX Integration Brian Hogan This tutorial will take you through the necessary steps to create a template-based web site using Macromedia Dreamweaver and Macromedia Fireworks. The

More information

Setting Up a Dreamweaver Site Definition for OIT s Web Hosting Server

Setting Up a Dreamweaver Site Definition for OIT s Web Hosting Server page of 4 oit UMass Office of Information Technologies Setting Up a Dreamweaver Site Definition for OIT s Web Hosting Server This includes Web sites on: https://webadmin.oit.umass.edu/~user http://people.umass.edu/

More information

Training Manual Version 1.0

Training Manual Version 1.0 State of Indiana Content Management System Open Text v.11.2 Training Manual Version 1.0 Developed by Table of Contents 1. Getting Started... 4 1.1 Logging In... 4 1.2 OpenText Menu...5 1.3 Selecting a

More information

Unbranded Partner Site Customization Guide

Unbranded Partner Site Customization Guide Unbranded Partner Site Customization Guide Contents 3 Hi There! 4 Customization Checklist 5 Site Overview 8 What You Need 9 How to use Triangle 13 Site Structure 15 Customization 2 Hi There! Congratulations

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing

More information

How to Choose the Right Web Design Company for Your Nonprofit

How to Choose the Right Web Design Company for Your Nonprofit How to Choose the Right Web Design Company for Your Nonprofit wiredimpact.com 1 A new website can very easily be the kind of can that gets kicked down the road. Many nonprofits are swamped with things

More information

osclass open source classifieds Installation Guide step by step

osclass open source classifieds Installation Guide step by step osclass open source classifieds Installation Guide step by step Introduction If you have decided to build your classifieds website with Osclass but you have no idea where to start, check out this installation

More information

How To Use Senior Systems Cloud Services

How To Use Senior Systems Cloud Services Senior Systems Cloud Services In this guide... Senior Systems Cloud Services 1 Cloud Services User Guide 2 Working In Your Cloud Environment 3 Cloud Profile Management Tool 6 How To Save Files 8 How To

More information

Using the CCNY Server Space with Secure Shell 3.0 for Windows Created by Doris Grasserbauer dgrasserbauer@ccny.cuny.edu

Using the CCNY Server Space with Secure Shell 3.0 for Windows Created by Doris Grasserbauer dgrasserbauer@ccny.cuny.edu Using the CCNY Server Space with Secure Shell 3.0 for Windows Created by Doris Grasserbauer dgrasserbauer@ccny.cuny.edu Topics: 1. Logging on to the server space 2. How to create a new folder on the server

More information

OET Cloud Services Getting Started Guide

OET Cloud Services Getting Started Guide OET Cloud Services Getting Started Guide Introduction OET Cloud Services uses Google Drive to let you store and access OET files anywhere -- on the web, and access them on your PC, or on any device connected

More information

UCL INFORMATION SERVICES DIVISION INFORMATION SYSTEMS. Silva. Introduction to Silva. Document No. IS-130

UCL INFORMATION SERVICES DIVISION INFORMATION SYSTEMS. Silva. Introduction to Silva. Document No. IS-130 UCL INFORMATION SERVICES DIVISION INFORMATION SYSTEMS Silva Introduction to Silva Document No. IS-130 Contents What is Silva?... 1 Requesting a website / Web page(s) in Silva 1 Building the site and making

More information

How to Make a Working Contact Form for your Website in Dreamweaver CS3

How to Make a Working Contact Form for your Website in Dreamweaver CS3 How to Make a Working Contact Form for your Website in Dreamweaver CS3 Killer Contact Forms Dreamweaver Spot With this E-Book you will be armed with everything you need to get a Contact Form up and running

More information

Drupal 101. Introduction to Drupal. October 10, 2015 nedcamp.org

Drupal 101. Introduction to Drupal. October 10, 2015 nedcamp.org Drupal 101 Introduction to Drupal October 10, 2015 nedcamp.org Rick Hood richard.hood@commonmediainc.com richardhoodcreative@gmail.com www.drupal.org/user/54879 2011 - present Project Manager & Drupal

More information

CS5331 Web Security - Assignment 0

CS5331 Web Security - Assignment 0 CS5331 Web Security - Assignment 0 Due : 25 Jan 2016 1 Background The objective of this assignment is to give you a hands-on experience of setting up a virtual machine. This is an INDIVIDUAL assignment

More information

Generate Android App

Generate Android App Generate Android App This paper describes how someone with no programming experience can generate an Android application in minutes without writing any code. The application, also called an APK file can

More information

How to Install and Setting Up Drupal

How to Install and Setting Up Drupal Drupal 101 Introduction to Drupal September 12, 2014 nerdsummit.org Rick Hood richard.hood@commonmediainc.com rick@flowmediadesign.com richardblakehood@gmail.com www.drupal.org/user/54879 2011 - present

More information

Chapter 28: Expanding Web Studio

Chapter 28: Expanding Web Studio CHAPTER 25 - SAVING WEB SITES TO THE INTERNET Having successfully completed your Web site you are now ready to save (or post, or upload, or ftp) your Web site to the Internet. Web Studio has three ways

More information

Index. Page 1. Index 1 2 2 3 4-5 6 6 7 7-8 8-9 9 10 10 11 12 12 13 14 14 15 16 16 16 17-18 18 19 20 20 21 21 21 21

Index. Page 1. Index 1 2 2 3 4-5 6 6 7 7-8 8-9 9 10 10 11 12 12 13 14 14 15 16 16 16 17-18 18 19 20 20 21 21 21 21 Index Index School Jotter Manual Logging in Getting the site looking how you want Managing your site, the menu and its pages Editing a page Managing Drafts Managing Media and Files User Accounts and Setting

More information

MiraCosta College now offers two ways to access your student virtual desktop.

MiraCosta College now offers two ways to access your student virtual desktop. MiraCosta College now offers two ways to access your student virtual desktop. We now feature the new VMware Horizon View HTML access option available from https://view.miracosta.edu. MiraCosta recommends

More information

Terminal Four (T4) Site Manager

Terminal Four (T4) Site Manager Terminal Four (T4) Site Manager Contents Terminal Four (T4) Site Manager... 1 Contents... 1 Login... 2 The Toolbar... 3 An example of a University of Exeter page... 5 Add a section... 6 Add content to

More information

The Rainmaker Platform Quick-Start Guide

The Rainmaker Platform Quick-Start Guide QUICK-START GUIDE The Rainmaker Platform Quick-Start Guide Get Your Rainmaker Site Set Up and Ready to Accelerate Your Business Copyright 2015 Rainmaker Digital, LLC All Rights Reserved. THE RAINMAKER

More information

Shopping Cart Manual. Written by Shawn Xavier Mendoza

Shopping Cart Manual. Written by Shawn Xavier Mendoza Shopping Cart Manual Written by Shawn Xavier Mendoza Table of Contents 1 Disclaimer This manual assumes that you are using Wix.com for website creation, and so this method may not work for all other online

More information

TIMETABLE ADMINISTRATOR S MANUAL

TIMETABLE ADMINISTRATOR S MANUAL 2015 TIMETABLE ADMINISTRATOR S MANUAL Software Version 5.0 BY GEOFFPARTRIDGE.NET TABLE OF CONTENTS TOPIC PAGE 1) INTRODUCTION 1 2) TIMETABLE SPECIFICATIONS 1 3) SOFTWARE REQUIRED 1 a. Intranet Server (XAMPP

More information

Agile ICT Website Starter Guides

Agile ICT Website Starter Guides Agile ICT Website Guide V1.0 1 Agile ICT Website Starter Guides 2 The purpose of this guide is to show you how to edit some of the basics of the website you have purchased through Agile ICT. The website

More information

Digital Downloads Pro

Digital Downloads Pro Digital Downloads Pro [Install Manual] Start Requirements Install What s New About Created: 24/09/2014 By: wojoscripts.com http://wojoscripts.com/ddp/ Thank you for your purchase! If you have any questions

More information

Setting up a website for your club.

Setting up a website for your club. Setting up a website for your club. Introduction Setting up a website for your club is, in today s environment, a simple process and only costs a few pounds a year. There are a number of ways that it can

More information

What you will need before beginning this guide

What you will need before beginning this guide Installing Wordpress to Easyspace hosting Please note that Easyspace recommend Linux webhosting for installing Wordpress as this allows for easy management of your file/folder permissions. All of the Easyspace

More information

How to get started with Microsoft SkyDrive

How to get started with Microsoft SkyDrive How to get started with Microsoft SkyDrive Blog Post Date: August 27, 2012 Category: Technology made easy Author: Ulrika Hedlund Source: http://www.businessproductivity.com/how-to-get-started-with-microsoft-skydrive

More information

Web Design Contract. Summary: What do both parties agree to do? Date: [date] Between us [company name] and you [customer name]

Web Design Contract. Summary: What do both parties agree to do? Date: [date] Between us [company name] and you [customer name] Web Design Contract Date: [date] Between us [company name] and you [customer name] Summary: We ll always do our best to fulfil your needs and meet your expectations, but it s important to have things written

More information

Customer Control Panel Manual

Customer Control Panel Manual Customer Control Panel Manual Contents Introduction... 2 Before you begin... 2 Logging in to the Control Panel... 2 Resetting your Control Panel password.... 3 Managing FTP... 4 FTP details for your website...

More information

Net 2. NetApp Electronic Library. User Guide for Net 2 Client Version 6.0a

Net 2. NetApp Electronic Library. User Guide for Net 2 Client Version 6.0a Net 2 NetApp Electronic Library User Guide for Net 2 Client Version 6.0a Table of Contents 1 INTRODUCTION AND KEY FEATURES... 3 SOME OF THE KEY FEATURES INCLUDE:... 3 INSTALLATION PREREQUISITES:... 3 2

More information