By Ryan Stevenson. Guidebook #1 Website Hosting cpanel

Size: px
Start display at page:

Download "By Ryan Stevenson. Guidebook #1 Website Hosting cpanel"

Transcription

1 By Ryan Stevenson Guidebook #1 Website Hosting cpanel

2 Table of Contents 1. Access cpanel 2. Accounts 3. MySQL Databases & phpmyadmin 4. Website Backups & File Manager 5. FTP 6. Subdomains & Addon Domains 7. Install WordPress with QuickInstall 8. Manual WordPress Installation 9. Cron Jobs

3 Access cpanel On most servers, you can simply add /cpanel on the end of your domain name to reach the cpanel. For a website, example.com, this address would reach the cpanel: Another option is to add :2082 to the end of your domain name is the default port number used for cpanel. When you visit the cpanel on your domain, you will need to login using your hosting account username and password. After you are logged in, you will see numerous sections of icons on the right-hand side of the page. In this guide, the most important of these sections and icons are discussed.

4 Accounts In the Mail section, the main icon you will use is the first icon, Accounts. From here, you will be able to create new accounts, get settings from your accounts to access them in programs (like Outlook, Windows Live Mail, etc), and even access them directly through your cpanel. On the Accounts page, you can easily create a new account by simply providing the desired and domain name and your password. Then, just click the Create Account button. Once you have created an account, it will show up in a list below the box where it was created. If you click on the More link, it displays two additional links: Access Webmail and Configure Client. If you click on Access Webmail, you can actually access this account directly through your cpanel. You'll be prompted to select a web program to use and will also have to provide the login information for the account.

5 Since the web programs for accessing your are fairly limited and also annoying to use if you have more than one website, you can access your through desktop based software clients like Outlook or Windows Live Mail (this is recommended if the is used or needs to be checked on a regular basis). If you click on Configure Client, it will present you with a variety of options you can use to connect to this account through other software. For certain software, automatic configuration files are available to download to easily install the account. For other clients like Windows Live Mail, for example, just look for the Secure SSL section of settings. Just take note of the Incoming Server and Outgoing Server information (address and port numbers). Simply provide this information in your client. IMAP and POP3 You may notice in the Incoming Server settings that two different port numbers are provided one for IMAP and the other for POP3. You actually do not need both of these numbers, but you will need to decide which one to use. These are actually methods used to connect to an account and can change your experience using your accounts depending on your choice. With an client, you are actually typically downloading the s from your server. IMAP synchronizes with the server mail account. This means that when you open/delete an in your client, it will be marked as read in both the client and on the server. If you access your from more than one computer, it is very important to use this setting, although I typically recommend it anyways (if you get a new computer, you would end up downloading every single again with them marked as unread and be a bit lost).

6 With POP3, you simply download the s from the server and all are marked as unread in your client initially. This setting isn't supported by some clients, like Windows Mail in Windows 8. Troubleshooting Tip If you have any problems accessing your account using these settings, it could be a problem with the username. First, try using the entire username as provided in the information box with the domain name included some people will leave off the domain name and not realize what is going wrong. If that does not work, try replacing symbol in the username with a + symbol in your client. I have found that some servers and/or clients won't work with symbol properly but will using a + symbol.

7 MySQL Databases & phpmyadmin In the Databases section, MySQL Databases and phpmyadmin are the most commonly used icons. MySQL Databases On this page, you can create and manage your databases and database users. This is the backbone of the database system if you delete a database from this page, it will completely wipe it out forever with any information that was in it. The steps below describe how to create a new database for use. Look for Create New Database and then give then database a name. Click the Create Database button when finished. Once the database is created, you'll be shown a message. Click on the Go Back button there is more to be done before the database can be used. You should now see the database listed on the page. You may notice that Users in the database is blank. This needs to be corrected to be able to use the databse. Look for MySQL Users on the same page. You will first need to create a user to go with this database (always create a new user to go with each new database for security reasons). It is OK to give the database user the same name as the database and can also make it easier for you to remember when it

8 comes time to use these settings elsewhere, like in website scripts. After you provide the information, just click Create User. When the user is created, you'll be shown the username and password be sure to click on the Go Back button again to perform one last task to be able to use the database. The last thing that needs to be done is to add the user to the database. Below where you created the user, look for Add User to Database. Select the User and the Database you created, and then click the Add button. When you add the user to the database, you will be asked to select privileges for the user. For most purposes, you will simply want click on the All Privileges checkbox to select everything, and then click on the Make Changes button.

9 Once the privileges are set, the database is ready for use. You could connect to it using the settings you just created through a website script. If you manually install some website software, like WordPress for example, it will ask you for database information. phpmyadmin When you want to create, edit, view, export or delete information from your database manually, phpmyadmin is the easiest way to do it. When you visit phpmyadmin through your cpanel, you will see a listing of the available databases on the left-hand side of the page. Just click on the database name that you created to work with it. Information is stored in the database using tables for organization. Each table has a set number of columns, each of which will contain a specific piece of information. As information is added to the database, new rows are created and each row will have information for each column. The steps below describe how to create a new database table. Give the new table you want to create a Name and also specify a Number of columns to use. For this tutorial, I will actually be using three columns and not two, as pictured below.

10 Next, you will need to provide the information for each column for the database table. For most purposes, you will not need to fill out everything here. The most important aspects are discussed below. Column This is the name of the column and should be unique. There are some names that are not allowed to be used here, so try to give your names a prefix of some sort, even if it just a single letter, to avoid this potential problem. Type This controls what type of information is allowed to be stored in this column. INT and VARCHAR are two of the most commonly used types. INT is for whole numbers (up to 2,147,483,647) and VARCHAR is for text (up to 255 characters long). Decimal is for decimal numbers, BIGINT is for larger whole numbers, and TEXT/BLOB are for text larger than 255 characters. Length / Values If you are using certain types, like INT or VARCHAR, you need to provide a maximum length in characters for the column data. For INT, 10 is the max you can use and 255 is the max for VARCHAR. Some types, like TEXT and BLOB do not need anything here. Default If you want a column to have a default value for all rows, just select As Defined in the drop-down box and then enter the default value in the text box below it. Index This defines whether a column is indexed or not, which allows for faster searching when used properly. In general, when you create your table, do not use this unless the column will be marked as AUTO_INCREMENT. In that case, select PRIMARY here as the Index. After you create a table, if you want row values for specific columns to be unique among other columns, simply add a UNIQUE index to the column. If you plan to use a column to search for information in this database table (through a web script, for example), add an INDEX index to the column. You can define more than one column as UNIQUE and/or INDEX columns, but PRIMARY should

11 only be used once per table and must be set for one column in each table. AUTO_INCREMENT This is used with the PRIMARY Index and an INT Type column. For each new row created in the table, this column with count up in numbers automatically. This is an easy way to give id numbers to rows in database tables, and the id numbers can then be used in web scripts for easy identification of database rows.

12 Website Backups & File Manager In the Files section in cpanel, you can easily backup and restore your website through the Backups icon or upload/edit/delete files from your site using File Manager. Backups If you visit the Backups page, there are a variety of options available for you. The Full Backup option at the top will backup your entire website hosting account including files, accounts, and databases. However, it is very important to remember that these Full Backups cannot be restored through your cpanel they can only be restored through the server administration, which most people do not have access to using shared hosting accounts (VPS and Dedicated servers have access to this WHM). Since most people use shared hosting accounts, you will want to use Partial Backups so that you can actually restore these backups if the need arises. Download a Home Directory Backup to backup the files and accounts. Download a MySQL Database Backup to backup database tables and information. Either of these two partial backup types can be restored through this same page.

13 File Manager The File Manager is basically FTP access to a site but through cpanel, which allows you to upload new files, change existing files, or even delete them entirely. In the File Manager, you will see a list of folders down the left-hand side of the page. Look for the folder called public_html. Everything within this folder can be accessed through your public website. If you are using multiple domains on the same hosting account, you will likely also notice the domain name folders in the public_html folder. These domain name folders act as public_html folders for those specific domains, so everything within each folder contains the public files for that domain name. Most of the actions that can be performed on files are available through the icons at the top of the page. You can easily create new files, new folders, copy/move/download/delete/edit files, and even upload new files/folders to your site here. If you want to perform one of these actions on a specific file or folder on the site, simply select it in the window and then click the button. One particular thing worth mentioning in a bit more detail is the Change Permissions icon. Permissions can be set for any file or folder on a site. Some website scripts that require manual installation will direct you to change the permissions on a file or folder (also called CHMOD sometimes, which is a PHP command that is used to change permissions). In most cases, a script might direct you to set a folder to 755 or 777 to allow scripts to write files to that folder. If you need to change permissions, simply select the desired checkboxes to achieve the desired permission numbers. Permissions of 644 are commonly used to limit the access of particular files on your site, like configuration files. However, unless an installation guide has specifically told you to change permissions, then you will likely not want to mess with them.

14

15 FTP FTP works is a very similar manner to the File Manager, except that you will need to use dedicated software to connect to FTP. Personally, I use Cute FTP, which you can try free for a month, but there are also freeware FTP programs out there, which may be good enough for those that do not use FTP very often (I use it daily). FTP is recommended to use if you have a large number of files to upload or if you want to upload a single file that has a large filesize. It has a more reliable connection for uploads like this. To connect to a site in a FTP program, you simply need to provide your cpanel login information for that site. The Host that you specify for the site is your domain name with ftp. added to the beginning. You can see below that I have set the host as ftp.downcomforterguide.com.

16 Subdomains & Addon Domains The Domains section of icons in cpanel allows you to create or manage Subdomains and Addon Domains. A Subdomain is used to add a prefix to your domain name that then acts like it is a separate website. For example, a site called example.com with a subdomain called demo could be accessed like this: Addon Domains are used when you want to use more than one domain name on a single web hosting account. Technically, an Addon Domain is actually using a Subdomain to store the contents of the additional domain names, but then it redirects the Addon Domain to point to the Subdomain so it appears as though the domain is on it's own hosting account. When you want to add more than one domain to shared hosting account, simply visit the Addon Domains icon to add it to your account. Just provide the domain name and account login information for this new domain to create it. Once you create it, cpanel and FTP for the site can be accessed either using the main account information for the primary domain on the hosting account or using this new account information for this specific domain.

17 Install WordPress with QuickInstall Under Software/Services, the QuickInstall icon provides you a wide variety of free software that you can easily install on your site. QuickInstall is the fastest and easiest way to install WordPress on a new site. After visiting the QuickInstall page, just look for the WordPress link in the top-left menu links. When you click on WordPress, it will present a Continue button that needs to be clicked to proceed. Once you click on that Continue button, you are asked for additional information to complete the WordPress installation. Simply select the domain name where you want to install WordPress and enter your and desired login information for the site. Once you provide this information and click Install Now, everything will be done for you to get WordPress setup. You will then be presented with a link to your live site, where you can login using the

18 provided account information to begin work on the site.

19 Manual WordPress Installation If QuickInstall is not available in your cpanel (some hosting accounts do not offer it), you can always choose to install WordPress manually on a site. This can be a confusing process for those that have never done it before, but many of the confusing aspects of the installation process have already been covered by this cpanel guidebook (like creating a database manually). To start, you will need to download WordPress from Follow these steps to install WordPress: #1. Decompress (unzip) the WordPress package you downloaded to your local computer. #2. Create a database through cpanel to use for the WP site. Then create a database user and add it to that database will all privileges. #3. Upload all of the files and folders from the decompressed WP package to your website through FTP. You will want to upload these files to the directory where you want WordPress to run (in the public_html or the addon domain directory for most sites). #4. Run the WordPress installation script and provide the information for the database and user you created. Type in your domain name followed by /wp-admin/install.php to access this script. If your domain was example.com, you would reach that script with this address: If you need additional help installing WordPress, you can take a look at their installation guide here:

20 Cron Jobs In the Advanced section of icons, the Cron jobs link allows you to automate website script tasks. This is quite possibly one of the most misunderstood and yet most powerful features of cpanel. WordPress is a great example of cron jobs. WordPress has a cron job system that will automate specific tasks on a website (like future scheduled posts, for example). If you have ever used WordPress before and noticed that some of those automated features didn't work as expected (especially the timing of the automatic updates), it was because of the cron job. When WordPress has a visitor to the site, it will look to see if the cron job needs to be called, but if your site doesn't receive daily traffic, then the cron job may not get called at all! You can correct this by simply adding a real cron job entry in your cpanel for the WordPress cron job. The first thing you need to know is the location of the Home Directory of your site. In cpanel, towards the bottom of the left-hand column, you can find some information for your hosting account that includes the Home Directory (as shown below). Take note of this Home Directory because you will need it to create the cron job. Now, click on the Cron Jobs link to get started. You will want to use the Add New Cron Job section at the top of that page. You can specify the timing of the cron job here. For the WordPress cron job, you will want it to run once an hour this can be selected from the Common Settings drop-down box. Once you select that setting, the only other thing you need to do is provide the command for the cron job. For the WordPress cron job, we want to run a PHP file once an hour. To do this, simply use the php command followed by the full directory path to the file that you want to run.

21 Below, you can see the cron job that I created, which shows the full path to the WordPress cron job for this site. Notice the Home Directory at the beginning of the path, followed by public_html. After that, I have also used the directory for an addon domain on this account, downcomforterguide.com. Finally, I have specified the cron job file wp-cron.php. That file is located in the home directory of any WordPress site you just need to figure out the full directory path to get to it to add it as a cron job.

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

WHY USE ILLUMIN8 MARKETING FOR HOSTING YOUR WEB SITE?

WHY USE ILLUMIN8 MARKETING FOR HOSTING YOUR WEB SITE? QUESTIONS OR COMMENTS? email info@illumin8marketing.com or call 608-796-1990 WHY USE ILLUMIN8 MARKETING FOR HOSTING YOUR WEB SITE? Yes, there are cheaper (even free) alternatives out there. What we will

More information

Domain Name. Domain Registrar. Web Site cpanel. www..com. www..net. www..biz URL: Username: Password: www.mydomain.com/cpanel. Username: Password:

Domain Name. Domain Registrar. Web Site cpanel. www..com. www..net. www..biz URL: Username: Password: www.mydomain.com/cpanel. Username: Password: 314 Main Street Onalaska, WI 54650 608-787-8887 Why Use The Idea Center for Hosting Your Web Site? Yes, there are cheaper (even free) alternatives out there. What we will offer you is a reliable service,

More information

1. Open Thunderbird. If the Import Wizard window opens, select Don t import anything and click Next and go to step 3.

1. Open Thunderbird. If the Import Wizard window opens, select Don t import anything and click Next and go to step 3. Thunderbird The changes that need to be made in the email programs will be the following: Incoming mail server: newmail.one-eleven.net Outgoing mail server (SMTP): newmail.one-eleven.net You will also

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

Initial Setup of Microsoft Outlook 2011 with IMAP for OS X Lion

Initial Setup of Microsoft Outlook 2011 with IMAP for OS X Lion Initial Setup of Microsoft Outlook Concept This document describes the procedures for setting up the Microsoft Outlook email client to download messages from Google Mail using Internet Message Access Protocol

More information

Set up Outlook for your new student e mail with IMAP/POP3 settings

Set up Outlook for your new student e mail with IMAP/POP3 settings Set up Outlook for your new student e mail with IMAP/POP3 settings 1. Open Outlook. The Account Settings dialog box will open the first time you open Outlook. If the Account Settings dialog box doesn't

More information

Exchange 2010. Outlook Profile/POP/IMAP/SMTP Setup Guide

Exchange 2010. Outlook Profile/POP/IMAP/SMTP Setup Guide Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide Document Revision Date: Nov. 13, 2013 Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide i Contents Introduction... 1 Exchange 2010 Outlook

More information

Automated CPanel Backup Script. for home directory backup, remote FTP backup and Amazon S3 backup

Automated CPanel Backup Script. for home directory backup, remote FTP backup and Amazon S3 backup Automated CPanel Backup Script for home directory backup, remote FTP backup and Amazon S3 backup Version : 1.0 Date : August 10, 2011 Developed by : Dody Rachmat Wicaksono (support@cpanelbackupscript.com)

More information

Introduction to cpanel

Introduction to cpanel Introduction to cpanel Thank you for hosting your domain with Sierra Tel Internet. In order to provide modern and efficient service, we are housing your website s files on a server running the Linux operating

More information

Email setup information for most domains hosted with InfoRailway.

Email setup information for most domains hosted with InfoRailway. Email setup information for most domains hosted with InfoRailway. Incoming server (POP3): pop.secureserver.net port 995 (SSL) Incoming server (IMAP): imap.secureserver.net port 993 (SSL) Outgoing server

More information

Web Hosting Getting Started Guide

Web Hosting Getting Started Guide Web Hosting Getting Started Guide This guide describes: - Hosting Terms and Definitions - How to sync a domain with your hosting account - How to change your domain s nameservers - How to use FTP to upload

More information

Exchange 2010. Outlook Profile/POP/IMAP/SMTP Setup Guide

Exchange 2010. Outlook Profile/POP/IMAP/SMTP Setup Guide Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide September, 2013 Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide i Contents Exchange 2010 Outlook Profile Configuration... 1 Outlook Profile

More information

SSL VPN Setup for Windows

SSL VPN Setup for Windows SSL VPN Setup for Windows SSL VPN allows you to connect from off campus to access campus resources such as Outlook email client, file sharing and remote desktop. These instructions will guide you through

More information

Mail Configuration Tutorial Red Waves, Inc.

Mail Configuration Tutorial Red Waves, Inc. Mail Configuration Tutorial Red Waves, Inc. Purpose This tutorial will explain how to manage email accounts using the cpanel Web Interface. Furthermore, the tutorial will provide step-by-step instructions

More information

Create a New Account Contents

Create a New Account Contents Create a New Account Contents Goals...2 Create a New Domain Account...2 Domain Information...3 Package...4 Settings...5 Reseller Settings...6 DNS Settings...6 Mail Routing Settings...7 Conclusion...7 1

More information

Welcome To Your New Web Hosting Account!

Welcome To Your New Web Hosting Account! Welcome To Your New Web Hosting Account! We are focused on providing you the very best web hosting service, including all the tools necessary to establish and maintain a successful website. This document

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

The Web Pro Miami, Inc. 615 Santander Ave, Unit C Coral Gables, FL 33134 6505. T: 786.273.7774 info@thewebpro.com www.thewebpro.

The Web Pro Miami, Inc. 615 Santander Ave, Unit C Coral Gables, FL 33134 6505. T: 786.273.7774 info@thewebpro.com www.thewebpro. 615 Santander Ave, Unit C Coral Gables, FL 33134 6505 T: 786.273.7774 info@thewebpro.com www.thewebpro.com for v.1.06 and above Web Pro Manager is an open source website management platform that is easy

More information

NAS 253 Introduction to Backup Plan

NAS 253 Introduction to Backup Plan NAS 253 Introduction to Backup Plan Create backup jobs using Backup Plan in Windows A S U S T O R C O L L E G E COURSE OBJECTIVES Upon completion of this course you should be able to: 1. Create backup

More information

Microsoft Outlook 2010

Microsoft Outlook 2010 Microsoft Outlook 2010 a. Open Outlook 2010. b. Click File i. Select Info. ii. Within Account Information, click Add Account. c. Within the Setup wizard select Manually configure server settings or additional

More information

Outlook Express POP Instructions - Bloomsburg University Students

Outlook Express POP Instructions - Bloomsburg University Students 1. Open Outlook Express by clicking Start, All Programs, and Outlook Express. 2. Click on the Tools menu and click Accounts. 1 3. Click on Add Mail 4. Enter your name and click Next. 2 5. Enter your full

More information

IRMACS E-Mail Setup. Your IRMACS e-mail is available internally by the IMAP protocol. The server settings used are:

IRMACS E-Mail Setup. Your IRMACS e-mail is available internally by the IMAP protocol. The server settings used are: IRMACS E-Mail Setup General Information This document covers both the default Apple OSX mail client and the installed Mozilla s Thunderbird mail client. If you are comfortable setting up your own mail

More information

Installing CPV Lab Version 2.17

Installing CPV Lab Version 2.17 Installing CPV Lab Version 2.17 END-USER LICENSE AGREEMENT ( EULA ) FOR CPV LAB This End-User License Agreement ("EULA") pertains to the CPV Lab product (called Software" in this Agreement). Read the terms

More information

Email Instructions. Outlook (Windows) Mail (Mac) Webmail Windows Live Mail iphone 4, 4S, 5, 5c, 5s Samsung Galaxy S4 BlackBerry

Email Instructions. Outlook (Windows) Mail (Mac) Webmail Windows Live Mail iphone 4, 4S, 5, 5c, 5s Samsung Galaxy S4 BlackBerry Email Instructions Outlook (Windows) Mail (Mac) Webmail Windows Live Mail iphone 4, 4S, 5, 5c, 5s Samsung Galaxy S4 BlackBerry ii Table of Contents Table of Contents 1 Mail Account Settings 1 Account Set

More information

Windows Mail POP Instructions - Bloomsburg University Students

Windows Mail POP Instructions - Bloomsburg University Students 1. Open Windows Mail from your Start Menu. 2. Click on the Tools menu and click Accounts. 1 3. Click on Add to add your account. 4. Click on Email Account and then click Next. 2 5. Enter your full name

More information

WineWeb Email Account Services

WineWeb Email Account Services As part of WineWeb s website services, we can provide email accounts under your domain name. Although this is optional, almost all of our clients use our mail server for their email accounts. We run the

More information

Live@edu User Guide. Please visit the Helpdesk website for more information: http://www.smu.edu.sg/iits/helpdesk_support/index.asp

Live@edu User Guide. Please visit the Helpdesk website for more information: http://www.smu.edu.sg/iits/helpdesk_support/index.asp IITS Main Office SINGAPORE MANAGEMENT UNIVERSITY Administration Building, Level 11 81, Victoria Street Singapore 188065 Phone: 65-6828 1930 Email: iits@smu.edu.sg Please visit the Helpdesk website for

More information

NeoMail Guide. Neotel (Pty) Ltd

NeoMail Guide. Neotel (Pty) Ltd NeoMail Guide Neotel (Pty) Ltd NeoMail Connect Guide... 1 1. POP and IMAP Client access... 3 2. Outlook Web Access... 4 3. Outlook (IMAP and POP)... 6 4. Outlook 2007... 16 5. Outlook Express... 24 1.

More information

Set Up E-mail Setup with Microsoft Outlook 2007 using POP3

Set Up E-mail Setup with Microsoft Outlook 2007 using POP3 Page 1 of 14 Help Center Set Up E-mail Setup with Microsoft Outlook 2007 using POP3 Learn how to configure Outlook 2007 for use with your 1&1 e-mail account using POP3. Before you begin, you will need

More information

About This Document 3. Integration Overview 4. Prerequisites and Requirements 6

About This Document 3. Integration Overview 4. Prerequisites and Requirements 6 Contents About This Document 3 Integration Overview 4 Prerequisites and Requirements 6 Meeting the Requirements of the cpanel Plugin... 6 Meeting the Requirements of Presence Builder Standalone... 6 Installation

More information

Alberni Valley IT Services http://www.avits.ca admin@avits.ca. Virtual domain E-mail information.

Alberni Valley IT Services http://www.avits.ca admin@avits.ca. Virtual domain E-mail information. Alberni Valley IT Services http://www.avits.ca admin@avits.ca Virtual domain E-mail information. Welcome! This document outlines information necessary for you to send and receive E-mail for your virtual

More information

Fasthosts Internet Parallels Plesk 10 Manual

Fasthosts Internet Parallels Plesk 10 Manual Fasthosts Internet Parallels Plesk 10 Manual Introduction... 2 Before you begin... 2 Logging in to the Plesk control panel... 2 Securing access to the Plesk 10 control panel... 3 Configuring your new server...

More information

Webmail Access. Contents

Webmail Access. Contents Webmail Access Contents Introduction... 2 Client Webmail and password settings... 2 OPTION1 : Log onto Webmail... 2 Webmail Control Panel... 3 Read Your Email Online... 4 OPTION 2: Configure the local

More information

3. On the E-mail Accounts wizard window, select Add a new e-mail account, and then click Next.

3. On the E-mail Accounts wizard window, select Add a new e-mail account, and then click Next. To Set Up Your E-mail Account in Microsoft Outlook 2003 1. Open Microsoft Outlook 03 3. On the E-mail Accounts wizard window, select Add a new e-mail account, and then click Next. 4. For your server type,

More information

CHARTER BUSINESS custom hosting faqs 2010 INTERNET. Q. How do I access my email? Q. How do I change or reset a password for an email account?

CHARTER BUSINESS custom hosting faqs 2010 INTERNET. Q. How do I access my email? Q. How do I change or reset a password for an email account? Contents Page Q. How do I access my email? Q. How do I change or reset a password for an email account? Q. How do I forward or redirect my messages to a different email address? Q. How do I set up an auto-reply

More information

Configuring Thunderbird for Flinders Mail at home.

Configuring Thunderbird for Flinders Mail at home. Configuring Thunderbird for Flinders Mail at home. Downloading Thunderbird can be downloaded from the Mozilla web site located at http://www.mozilla.org/download.html This web site also contains links

More information

BOTTOM UP THINKING EMAIL SETUP INSTRUCTIONS. Unique businesses require unique solutions CLIENT GUIDE

BOTTOM UP THINKING EMAIL SETUP INSTRUCTIONS. Unique businesses require unique solutions CLIENT GUIDE BOTTOM UP THINKING Unique businesses require unique solutions EMAIL SETUP INSTRUCTIONS CLIENT GUIDE INDEX How to connect a. Deciding on best method (POP or IMAP) Setting up email on devices Webmail a.

More information

A/ Parking of Your Domain Name

A/ Parking of Your Domain Name ! "#! eb hosting provides you with 3 major kind of services : Parking of your domain name Host your web pages Email Service A/ Parking of Your Domain Name If you own a domain name, you need somewhere to

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

Getting Started - The Control Panel

Getting Started - The Control Panel Table of Contents 1. Getting Started - the Control Panel Login Navigation Bar Domain Limits Domain User Account Properties Session Management 2. FTP Management Creating and Editing Users Accessing FTP

More information

Migration User Guides: The Console Email Application Setup Guide

Migration User Guides: The Console Email Application Setup Guide Migration User Guides: The Console Email Application Setup Guide Version 1.0 1 Contents Introduction 3 What are my email software settings? 3 Popular email software setup tutorials 3 Apple Mail OS Maverick

More information

Email Update Instructions

Email Update Instructions 1 Email Update Instructions Contents Email Client Settings The Basics... 3 Outlook 2013... 4 Outlook 2007... 6 Outlook Express... 8 Windows Mail... 9 Thunderbird 3... 10 Apple Mail... 11 2 Email Client

More information

How to set up your Secure Email in Outlook 2010*

How to set up your Secure Email in Outlook 2010* How to set up your Secure Email in Outlook 2010* This guide is for hosting clients who are hosting their email with us. If you are using a third party email, you should not use these instructions. 1. Open

More information

1. Open the preferences screen by opening the Mail menu and selecting Preferences...

1. Open the preferences screen by opening the Mail menu and selecting Preferences... Using TLS encryption with OS X Mail This guide assumes that you have already created an account in Mail. If you have not, you can use the new account wizard. The new account wizard is in the Accounts window

More information

Email Client Configuration Guide

Email Client Configuration Guide Email Client Configuration Guide Table of Contents Email Configuration...3 Email settings...3 IMAP...3 POP...3 SMTP...3 Process Overview...5 Account set up wizards...5 Anatomy of an email address...5 Why

More information

Plesk 11 Manual. Fasthosts Customer Support

Plesk 11 Manual. Fasthosts Customer Support Fasthosts Customer Support Plesk 11 Manual This guide covers everything you need to know in order to get started with the Parallels Plesk 11 control panel. Contents Introduction... 3 Before you begin...

More information

Getting Started With Your Virtual Dedicated Server. Getting Started Guide

Getting Started With Your Virtual Dedicated Server. Getting Started Guide Getting Started Guide Getting Started With Your Virtual Dedicated Server Setting up and hosting a domain on your Linux Virtual Dedicated Server using cpanel. Getting Started with Your Virtual Dedicated

More information

Booth Gmail Configuration

Booth Gmail Configuration Student email is accessed via a Booth branded Gmail service. Student mailboxes will be accessed via Gmail. Configure Gmail Settings Before you connect Gmail to send and receive Booth Gmail on your mobile

More information

Cox Business Premium Online Backup USER'S GUIDE. Cox Business VERSION 1.0

Cox Business Premium Online Backup USER'S GUIDE. Cox Business VERSION 1.0 Cox Business Premium Online Backup USER'S GUIDE Cox Business VERSION 1.0 Table of Contents ABOUT THIS GUIDE... 4 DOWNLOADING COX BUSINESS PREMIUM ONLINE BACKUP... 5 INSTALLING COX BUSINESS PREMIUM ONLINE

More information

Microsoft Exchange Mailbox Email Software Setup Guide

Microsoft Exchange Mailbox Email Software Setup Guide Microsoft Exchange Mailbox Email Software Setup Guide Microsoft Exchange Mailbox Setup Guide Setting up a Microsoft Exchange mailbox only takes a few minutes. You can set up any email software to send

More information

Reseller Manual. version 2.0-r1

Reseller Manual. version 2.0-r1 Reseller Manual version 2.0-r1 Contents 1 Definition of Terms 3 2 Sections of the Reseller Interface 3 3 General 4 3.1 Overview.............................. 4 3.2 Change Password.........................

More information

NTT Web Hosting Service [User Manual]

NTT Web Hosting Service [User Manual] User Version 0.11 August 22, 2014 NTT Web Hosting Service [User Manual] Presented By: OAM Linux A NTT Communications (Thailand) CO., LTD. Table of Contents NTT Web Hosting Service [User Manual] 1 General...

More information

cpanel Webhosting Guide 2014 Dreamtilt Pty Ltd

cpanel Webhosting Guide 2014 Dreamtilt Pty Ltd cpanel Webhosting Guide 2014 Dreamtilt Pty Ltd 1 cpanel Guide 1 Hosting Info 1.1 Hosting with Dreamtilt 4 2 Welcome to cpanel 2.1 Logging into cpanel 5 2.2 Get to know cpanel 6 3 cpanel Preferences 3.1

More information

ConnectMail Mobile Email Configuration

ConnectMail Mobile Email Configuration ConnectMail Mobile Email Configuration Introduction/Utility ConnectMail allows you to use your mobile phone to access information in your account. This includes e mail messages, calendar, and contacts.

More information

Standard Mailbox Email Software Setup Guide

Standard Mailbox Email Software Setup Guide Standard Mailbox Email Software Setup Guide Standard Mailbox Setup Guide Setting up a Standard mailbox only takes a few minutes. You can set up any email software to receive email from your mailbox. This

More information

Quick Reference Guide: Business Mail

Quick Reference Guide: Business Mail : Business Mail TABLE OF CONTENTS GENERAL INFORMATION...2 DETAILED STEPS ON CONFIGURING WINDOWS FOR E-MAIL...2 Set-up For Microsoft Outlook Express...7 Set-up Of Microsoft Outlook On Windows XP...9 PROBLEMS

More information

www.nuvox.net, enter the administrator user name and password for that domain.

www.nuvox.net, enter the administrator user name and password for that domain. Page 1 of 7 Cute_FTP Server Names and Authentication Before connecting to an FTP site you need three pieces of information: the server name or the site you are connecting to and a user name and password.

More information

BushSoft Accounts - Installation manual

BushSoft Accounts - Installation manual BushSoft Accounts - Installation manual You should have received a license file from BushSoft to be able to complete the installation. You will be prompted for this file at the end of the installation

More information

How to Setup, Install & Run a Website on your Local Computer. For WordPress - on an Offline Server - WAMP

How to Setup, Install & Run a Website on your Local Computer. For WordPress - on an Offline Server - WAMP How to Setup, Install & Run a Website on your Local Computer For WordPress - on an Offline Server - WAMP Index: Determine Operating System Status Download WAMP Server Download Latest WordPress Installing

More information

When you first login to your reseller account you will see the following on your screen:

When you first login to your reseller account you will see the following on your screen: Step 1 - Creating Your Administrative Account We presume that your Reseller account has been created. Here's how to create your Administrative account which you'll use to create your hosting plans, add

More information

Web24 Web Hosting Guide

Web24 Web Hosting Guide Web24 Web Hosting Guide Welcome Dear Web24 customer, We would like to thank you for choosing Web24 as your preferred web hosting provider. To make your experience as enjoyable as possible, we have prepared

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

How to Set Up Your. Email Account

How to Set Up Your. Email Account How to Set Up Your Email Account Contents Outlook 2002 (Office XP)... 3 Outlook 2003 (Office 2003)... 6 Outlook 2007 (Office 2007)... 10 Outlook 2010 (Office 2010)... 14 Outlook Account Setup Page 2 HOW

More information

Creating Custom Nameservers Contents

Creating Custom Nameservers Contents Creating Custom Nameservers Contents Goals... 2 Register Name Servers... 2 Setup Private NameServers in WHM... 4 Adding IP addresses for your name server... 5 Conclusion... 5 Goals This guide will help

More information

ShoutCast v2 - Broadcasting with SAM Broadcaster

ShoutCast v2 - Broadcasting with SAM Broadcaster ShoutCast v2 - Broadcasting with SAM Broadcaster In this tutorial we are going to explain how to broadcast to our ShoutCast v2 running under CentovaCast 3 using SAM Broadcaster. Differences Between ShoutCast

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

Talk Internet User Guides Controlgate Administrative User Guide

Talk Internet User Guides Controlgate Administrative User Guide Talk Internet User Guides Controlgate Administrative User Guide Contents Contents (This Page) 2 Accessing the Controlgate Interface 3 Adding a new domain 4 Setup Website Hosting 5 Setup FTP Users 6 Setup

More information

StarterPlus Mailbox Email Software Setup Guide

StarterPlus Mailbox Email Software Setup Guide StarterPlus Mailbox Email Software Setup Guide Setting up an StarterPlus mailbox only takes a few minutes. You can set up any email software to send and receive email from your mailbox. You can connect

More information

Webmail. Setting up your email account

Webmail. Setting up your email account Setting up your email account In these notes, yourdomain means the full domain name (i.e. the part of an email address after the @ sign). This doesn t include www, but does include.co.uk or.com. For example,

More information

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 PLEASE NOTE: The contents of this publication, and any associated documentation provided to you, must not be disclosed to any third party without

More information

How to move email to your new @students.ecu.edu account with MAC Mail

How to move email to your new @students.ecu.edu account with MAC Mail How to move email to your new @students.ecu.edu account with MAC Mail 1. Open Mail, and then do one of the following: If you've never set up any e mail accounts using Mail, the Welcome to Mail page appears.

More information

FTP Accounts Contents

FTP Accounts Contents FTP Accounts Contents Goal... 2 1. Add an FTP Account... 2 2. The FTP Account Management Table... 3 3. Remove an FTP Account... 4 4. Edit an FTP Account's Quota... 4 5. Change an FTP Account's Password...

More information

How to Setup your E-mail Account - Apple Mail for Mac OS X

How to Setup your E-mail Account - Apple Mail for Mac OS X How to Setup your E-mail Account - Apple Mail for Mac OS X 1 - Open Mail. 2- The Welcome to Mail screen should pop up. If you are not setting up Apple Mail for the first time, follow steps 5 to 7 and click

More information

Email Update Instructions

Email Update Instructions 1 Email Update Instructions Contents Email Client Settings The Basics... 3 Outlook 2013... 4 Outlook 2007... 6 Outlook Express... 7 Windows Mail... 8 Thunderbird 3... 9 Apple Mail... 10 2 Email Client

More information

1 Login to your CSUF student email account and click on the Settings icon ( ) at the far right.

1 Login to your CSUF student email account and click on the Settings icon ( ) at the far right. Connect to Your Student Email: Microsoft Outlook for PC Before you can access your student email account on your e-mail client, you must first enable POP/IMAP features on your student email account and

More information

User Manual version 3.1. Contents

User Manual version 3.1. Contents User Manual version 3.1 Contents 1What is Confixx? General Information... 3 1.1 Login... 3 1.2 Settings Lag... 3 2 The Sections of the Web Interface... 3 3 General... 4 3.1 Overview... 4 3.2 Change Password...

More information

Parallels Panel. Parallels Small Business Panel 10.2: User's Guide. Revision 1.0

Parallels Panel. Parallels Small Business Panel 10.2: User's Guide. Revision 1.0 Parallels Panel Parallels Small Business Panel 10.2: User's Guide Revision 1.0 Copyright Notice ISBN: N/A Parallels 660 SW 39 th Street Suite 205 Renton, Washington 98057 USA Phone: +1 (425) 282 6400 Fax:

More information

Follow these steps to configure Outlook Express to access your Staffmail email account:

Follow these steps to configure Outlook Express to access your Staffmail email account: Windows Instructions (This documentation is based on Outlook Express version 6). Outlook Express is no longer a recommended email client as it can cause unnecessary network traffic and server overload.

More information

CHAPTER 1 Exploring Mobile Devices with IMail 1

CHAPTER 1 Exploring Mobile Devices with IMail 1 Contents CHAPTER 1 Exploring Mobile Devices with IMail 1 CHAPTER 2 Windows Mobile... 2 Configuring Microsoft Exchange ActiveSync... 2 Setting up Mail Account... 8 CHAPTER 3 BlackBerry... 13 Configuring

More information

Snow Active Directory Discovery

Snow Active Directory Discovery Product Snow Active Directory Discovery Version 1.0 Release date 2014-04-29 Document date 2014-04-29 Snow Active Directory Discovery Installation & Configuration Guide Page 2 of 9 This document describes

More information

Integrated HD Setup and Installation

Integrated HD Setup and Installation Integrated HD Setup and Installation This document explains how to set up install the Integrated Help Desk. Areas where special technical knowledge are required are identified with an asterisk. Plugin

More information

How to install and use the File Sharing Outlook Plugin

How to install and use the File Sharing Outlook Plugin How to install and use the File Sharing Outlook Plugin Thank you for purchasing Green House Data File Sharing. This guide will show you how to install and configure the Outlook Plugin on your desktop.

More information

Windows Live Mail Setup Guide

Windows Live Mail Setup Guide Versions Addressed: Windows Live Mail 2011 Document Updated: 11/24/2010 Copyright 2010 Purpose: This document will assist the end user in configuring Windows Live Mail to access a POP3 email account hosted

More information

WHM Administrator s Guide

WHM Administrator s Guide Fasthosts Customer Support WHM Administrator s Guide This manual covers everything you need to know in order to get started with WHM and perform day to day administrative tasks. Contents Introduction...

More information

5. At the Windows Component panel, select the Internet Information Services (IIS) checkbox, and then hit Next.

5. At the Windows Component panel, select the Internet Information Services (IIS) checkbox, and then hit Next. Installing IIS on Windows XP 1. Start 2. Go to Control Panel 3. Go to Add or RemovePrograms 4. Go to Add/Remove Windows Components 5. At the Windows Component panel, select the Internet Information Services

More information

Install and Configure Oracle Outlook Connector

Install and Configure Oracle Outlook Connector Install and Configure Oracle Outlook Connector To install and configure Oracle Outlook Connector for Outlook to send and receive e-mail and to access your TechTime TM calendar, do the following. 1. Run

More information

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL SOS Online Backup USER MANUAL HOW TO INSTALL THE SOFTWARE 1. Download the software from the website: http://www.sosonlinebackup.com/download_the_software.htm 2. Click Run to install when promoted, or alternatively,

More information

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD)

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD) USING MYWEBSQL MyWebSQL is a database web administration tool that will be used during LIS 458 & CS 333. This document will provide the basic steps for you to become familiar with the application. 1. To

More information

Using Internet or Windows Explorer to Upload Your Site

Using Internet or Windows Explorer to Upload Your Site Using Internet or Windows Explorer to Upload Your Site This article briefly describes what an FTP client is and how to use Internet Explorer or Windows Explorer to upload your Web site to your hosting

More information

507-214-1000. This information is provided for informational purposes only.

507-214-1000. This information is provided for informational purposes only. 507-214-1000 This information is provided for informational purposes only. The following guide will show you how to set up email in various email programs. The Basic Email settings for all email addresses

More information

Grapevine Mail User Guide

Grapevine Mail User Guide Grapevine Mail User Guide Table of Contents Accessing Grapevine Mail...2 How to access the Mail portal... 2 How to login... 2 Grapevine Mail user guide... 5 Copying your contacts to the new Grapevine Mail

More information

Using Your New Webmail

Using Your New Webmail Using Your New Webmail Table of Contents Composing a New Message... 2 Adding Attachments to a Message... 4 Inserting a Hyperlink... 6 Searching For Messages... 8 Downloading Email from a POP3 Account...

More information

Quick Start Guide. Your New Email Account

Quick Start Guide. Your New Email Account Quick Start Guide Your New Email Account http://www.names.co.uk/support/ Table of Contents Adding a new email account... 3 Adding a new email address... 5 Adding a mail group... 6 How to check your emails...

More information

Email Migration Manual (For Outlook Express 6)

Email Migration Manual (For Outlook Express 6) Email Migration Manual (For Outlook Express 6) By SYSCOM (USA) May 13, 2013 Version 1.0 1 Contents 1. How to Change POP3/SMTP Setup for Outlook Express... 3 2. How to Login to Webmail... 7 3. How to Change

More information

Exchange 2013 mailbox setup guide

Exchange 2013 mailbox setup guide Fasthosts Customer Support Exchange 2013 mailbox setup guide This article covers the setup of Exchange 2013 mailboxes in Microsoft Outlook 2013, 2010 and Outlook 2011 for Mac. Contents Exchange 2013 Mailbox

More information

Email Migration Manual (For Outlook 2010)

Email Migration Manual (For Outlook 2010) Email Migration Manual (For Outlook 2010) By SYSCOM (USA) May 13, 2013 Version 2.2 1 Contents 1. How to Change POP3/SMTP Setting for Outlook 2010... 3 2. How to Login to Webmail... 10 3. How to Change

More information

1. An Introduction to cpanel. Welcome to Thanks for signing up. 2. How Domain Names work

1. An Introduction to cpanel. Welcome to Thanks for signing up. 2. How Domain Names work 1. An Introduction to cpanel cpanel is the name of the control panel you can use to manage your site. In our setup email, you can login using the details that look like this: Welcome to Thanks for signing

More information

cpanel 11 User Manual

cpanel 11 User Manual cpanel 11 User Manual Table Of Contents README FIRST...1 README FIRST...1 Common Questions...3 Common Questions...3 Advanced...9 Apache Handlers...9 Cron Jobs...10 Error Pages...12 Frontpage Extensions...14

More information

Open Thunderbird. To set up an e-mail account in Thunderbird, from the Tools menu select Account Settings; choose Email account; then click Next.

Open Thunderbird. To set up an e-mail account in Thunderbird, from the Tools menu select Account Settings; choose Email account; then click Next. Server Type: POP3 or IMAP Incoming(POP3 or IMAP) Mail Server: student.ncnm.edu POP3 Port: 995 (SSL) IMAP Port: 993 (SSL) Outgoing(SMTP) Mail Server: student.ncnm.edu SMTP Port: 587 (TLS) (Users must change

More information