Install WordPress 3.X In Multi Blog / Multi user mode On localhost

Size: px
Start display at page:

Download "Install WordPress 3.X In Multi Blog / Multi user mode On localhost"

Transcription

1 Install WordPress 3.X In Multi Blog / Multi user mode On localhost In this tutorial, we will cover how to setup WordPress as a Multi User /Multi Blog. We ll start by downloading and installing a new version of WordPress on a local computer and then configure the WordPress CMS to support Multi User /Multi Blog functionality. The following tutorial will guide you step by step to setup WordPress MU. Download the latest version of WordPress: Open a Browser window and enter in the address bar and hit GO. In the Google search windows that opens search for wordpress download as shown in Diagram 1. Diagram 1 In the Search results window Click on the Wordpress.org link as shown in Diagram 2. Diagram 2 1

2 When the wordpress.org site opens in the Browser window click Download Wordpress {version number} as shown in Diagram 3. Diagram 3 Select the Save File radio button, and save the zip file to your hard disk. Click OK, as shown in Diagram 4. Diagram 4 2

3 On click of OK, a file browser will open up. Navigate to an appropriate folder on your hard disk and save the wordpress-{version_number}.zip to your local computer, eg: X:\ public_html\multibloguser\ Here X:\ represents an appropriate drive letter on your computer as shown in Diagram 5. The zip file would be successfully downloaded and saved in this folder. Diagram 5 The WordPress Full_Package setup file downloaded from wordpress.org is a zipped file. Extract the entire contents of the archive into X:\public_html\multibloguser as shown in Diagram 6. Now Apache Web server needs to be informed of the existence of multibloguser. Diagram 6 This is done by adding virtual domain entries into Apache s httpd.conf file. The technique for doing this is described under the head Creating A WordPress Virtual Domain Under Apache. 3

4 Creating WordPress Virtual Domain Under Apache: The location Apache s httpd.conf file is normally: C:\Program Files\Apache Software Foundation\Apache2.2\conf\httpd.conf NOTE: This is assuming that Apache was installed in C:\Program Files on your local computer. Open httpd.conf file in any text (i.e. ASCII) editor of your choice. Locate the code block contained within <Directory C:/Program File/Apache Software Foundation/Apache2.2/htdocs > </Directory>. Select the code block. Copy and Paste this code block immediately below the original. NOTE: Please ensure that both <Directory....> and the </Directory>tags exist. Open Source Varsity Change <Directory "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs" > </Directory>. To <Directory X:/public_html/multibloguser > as shown in Diagram 7. NOTE: Please note the use of the forward slash above. Diagram 7 4

5 These entries within Apache s httpd.conf file ensure that Apache knows that X:\public_html\ multibloguser exists and that directory permissions are set. Once Apache knows the existence and location of X:\public_html\ multibloguser, appropriate entries in the httpd-vhost.conf must be made. httpd-vhost.conf is normally located at: C:\Program Files\Apache Software Foundation\Apache2.2\conf\extra\httpd-vhosts.conf Open the above conf file in any other text (i.e. ASCII) editor of your choice. Copy the <VistualHost *.80 > block of code and paste it immediately below the original code block. Now, when multiple Blogs are setup, each Blog should be configured to run as a subdomain of the main Blog installation. Here is where the DNS issue raises its head. Normally the Main Blog will have its URL which would be something like Assuming one requires another Blog, let s say firstchild to run as a subdomain its URL will be child1. which will definitely return a Page not found error from Apache web server. WordPress cannot handle a URL that is structured as child1. what WordPress can handle is a URL that reads child1.parentblog.com (which is without www) Hence when creating the virtual domain under Apache for the parent Blog ensure that the ServerName directive in the httd-vhosts.conf file is set to parentblog.com and not to as is often the case. Additionally, do remember to ensure the ServerAlias directive in the httd-vhosts.conf file carries the value *.parentblog.com. This directive sets the alternate names for a host(servername). Make the following changes as shown in Diagram 8. ServerAdmin: < Id> DocumentRoot: <Path where your virtual domain is located> ServerName: <Name of the website, in our case - multibloguser.com> ServerAlias:<wildcard entries of Server Name, in our case - *.multibloguser.com> ErrorLog: <Folder where all Apache errors logs will be stored> CustomLog: <Comment the CustomLog> 5

6 Diagram 8 After making all the above entries in both httpd.conf and httpd-vhost.conf, please Restart Apache Web Server. NOTE: The Apache Web Server icon is normally visible in the status bar of the Window (Look at the extreme right hand side of the status bar) If Apache Web Server does not restart please check all the entries made in the httpd.conf and httpd-vhost.conf files. HOST File Entries Now it s time to make entries in Windows HOSTS file as shown in Diagram 9. The HOSTS file contains mappings of IP addresses to host names. There must be a single IP address / host name pair on a single line in the HOSTS file. NOTE: The IP address and the Host name must be separated by a TAB. The HOSTS file is normally located at C:\WINDOWS\system32\drivers\etc\hosts When you open the hosts file in your favorite ASCII editor and it contains the some entries. If your hosts file contains the entry: # localhost Simply copy / paste this entry in your hosts file, so that you have duplicate entries. Then remove # sign in front of the second line, ( i.e. the one you just copy / pasted ) to activate it. NOTE: The # symbol at the start of any line tells Apache to ignore the line completely. Your host file entries should look like this: # localhost localhost As shown in Diagram 9. 6

7 Diagram 9 The next few entries will be the URL s of your main Blog and its associated child Blog s so that while testing your installation, your Browser will get its URL to ip resolved from within your hosts file as shown in Diagram 10. The hosts file will contain the following entries of the main blog and child blogs: # localhost localhost multibloguser.com prerna. multibloguser.com meher. multibloguser.com If you want to add any other child blog to your main blog in your local Apache installation, simply add another line structured as an - IP followed by the respective Blog URL. 7

8 Diagram 10 Before proceeding, open MySQL command prompt and 1) Create a new database in MySQL 2) Create a new MySQL user with a strong password 3) Bind the newly created user to the newly created database 4) Grant all permissions to the user on the newly created database. In our case, we have created database named multibloguser and username multibloguser. The user multibloguser has all possible permissions to access and use the MySQL database multibloguser as desired. 8

9 WordPress Installation: Open a Browser and type multibloguser.com in the address bar i.e. the domain name entry made in the hosts file and hit GO. This will automatically invoke index.php. When index.php executes, the Wordpress installation process is started. If you have not created a configuration file, WordPress will prompt you to first create a Configuration file. Click Create a Configuration file as shown in Diagram 11. Diagram 11 A new page opens which tells the user that before proceeding you need to know the Wordpress Database Name, Username and Password created by you. Click on the Lets Go as shown in Diagram 12. Diagram 12 9

10 The database connection details page opens. Fill in all the details as shown in Diagram 13. Diagram 13 Click onto the Run the install which completes the installation of Wordpress as shown in Diagram 14. Diagram 14 A new page opens in your Browser as shown in Diagram 15. Enter the Blog Title and Your . If you want you can change the username. By default WordPress set admin as username. Enter a strong password for the administrator backend login. Click onto the Install WordPress as shown in Diagram

11 Diagram 15 Wordpress is finally installed on your system. A new page opens in your browser, which provides you with the username and password of the Wordpress admin section as shown in Diagram 16. Click Log In. Diagram 16 11

12 Now, you can login to the WordPress backend administrative section by using the username and password created by you earlier. Diagram 17 Instructing WordPress To Deliver Multi Blog / Site Functionality In your WordPress files and folder, locate wp-config.php file in the root of your directory structure. Right click and open wp-config.php file in any ASCII editor as shown in Diagram 18. Diagram 18 12

13 Search for the line /* That's all, stop editing! Happy blogging. */ which is normally found towards the end of the wp-config file as shown in Diagram 19. Place your mouse cursor just above this line ( which is just a remark statement ) and press the Enter key a few time to make some space just above the line. Diagram 19 13

14 Copy / Paste the following code snippet just above this remark statement: define( WP_ALLOW_MULTISITE, true); as shown in Diagram 20. Once done, Save the wp-config.php file back to hard disk. NOTE: This code snippet instructs the WordPress core that it s required to work in multi site from now on. Diagram 20 14

15 Next go to the WP administrative login, and refresh the page if it is already open as shown in Diagram 21 and open the WordPress dashboard. Diagram 21 Enter the main blog s username and password. Click Log In as shown in Diagram 22. Diagram 22 15

16 In the left menu, locate the link Tools. Click Tools as shown in Diagram 23. Diagram 23 From the drop down menu that appears click on Network Setup as shown in Diagram 24. Diagram 24 16

17 The Network Installation process will start from here. From here you can select the type of address you want to access the child blog s site. There are two options Sub-domains and Sub-directories. By default WordPress, set Sub-domains as selected option as shown in Diagram 25. You cannot change the option later once you click Install. The Network details will automatically gets filled up by WordPress as shown in Diagram 25. Click Install. Diagram 25 In order to enable network, follow the written instruction in the browser page as shown in Diagram 26. NOTE: Before doing this, please backup your wp-config and.htaccess files. Diagram 26 17

18 After completing the following steps: 1) Create a blogs.dir directory inside wp-content directory. This directory is used to store uploaded media for the additional Blog sites and must be writeable by the web server. 2) Adding the following codespec in wp-config.php file above the /* That's all, stop editing! Happy blogging. */ line. Text Box 1 contains the additional code block that must be added to wp-config.php file: define( 'MULTISITE', true ); define( 'SUBDOMAIN_INSTALL', true );of $base = '/'; define( 'DOMAIN_CURRENT_SITE', 'multibloguser.com' ); define( 'PATH_CURRENT_SITE', '/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 ); Text Box 1 3) Add the following codespec in.htaccess file NOTE: If there are any WordPress rules within the.htaccess that exist these must be deleted. Next copy and paste the code visible in Text Box 2 into the.htaccess file normally found in the root directory of a WordPress Blog. Here is what the additional code block that will be added to wp-config.php file: RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule. index.php [L] Text Box 2 After adding all the necessary codespec in wp-config and.htaccess file, the WordPress CMS is now ready to be informed about all the multiple sites / Blog that it has to handle. For that you have to log in again ( as instructed during enabling the network process ). Re-login to the WordPress main blog. 18

19 When you re-login, you will see a new menu link called My Sites under Dashboard Menu as shown in Diagram 27. Click MySites Diagram 27 In WordPress 3.0, you had a new menu for Super Admin, but as of 3.1 you have an entire sub-section for Network Admin. The link can be found on the upper-right of all admin screens, by your name as shown in Diagram 28. Diagram 28 WordPress Network Admin s dashboard opens as shown in Diagram 29. Diagram 29 19

20 While you are Network Admin, Click Create a New Site on the Dashboard screen as shown in Diagram 30. OR In the left menu, locate the link Sites. Click Sites from the drop down menu that appears click Add New. Diagram 30 Enter the following information as per your requirement: Site Address prerna {Enter the child blog s address here} Enter the Blog Title Prerna s Blog {Enter the child blog s site title} Enter the Admin Id {Enter a legitimate ID here} NOTE: Ensure that a unique ID is used for each such new site / Blog Having done this a new site / Blog will be created named prerna under the parent Blog which you installed and just configured to deliver multiple sites / Blogs. Click Add Site as shown in Diagram 31. Diagram 31 20

21 Site added message is displayed as shown in Diagram 32. Diagram 32 Now in a new Browser tab I entered the URL - prerna dot multibloguser dot com in the address bar and Prerna s Blog, Home Page was displayed as shown in Diagram 33. Diagram 33 Now you have to separate Blogs the parent Blog named WP Multi Blog User Site and Prerna s Blog both being independent of each other but delivered by the same WordPress installation. If you wish to add more Blogs then simply go back to being Network Admin > Sites > Add New > Create A New Site and - add another site. Each of the Blogs will have their own independent Admin Dashboards displayed. 21

WP EBOOKS Creating A WordPress Network

WP EBOOKS Creating A WordPress Network WP EBOOKS Creating A WordPress Network The Complete Guide to Setting Up WordPress Multisite 1 WP EBOOKS Creating A WordPress Network The Complete Guide to Setting Up WordPress Multisite 2 Creating a WordPress

More information

Creating a Network. WordPress 3.1 (and up)

Creating a Network. WordPress 3.1 (and up) Creating a Network in WordPress 3.1 (and up) A comprehensive guide to setting up multisite by Andrea Rennick http://wpebooks.com Introduction Hello there intrepid reader. This here guide is to explain

More information

Installing WordPress CMS

Installing WordPress CMS Installing WordPress CMS Extract the contents of the wordpress zip file to D:/public_html/wordpress folder as shown in diagram 1. D:/public_html/wordpress is a virtual domain controlled by Apache Web server

More information

K-RATE INSTALLATION MANUAL

K-RATE INSTALLATION MANUAL K-RATE INSTALLATION MANUAL K-Rate Installation Manual Contents SYSTEM REQUIREMENTS... 3 1. DOWNLOADING K-RATE... 4 STEP 1: LOGIN TO YOUR MEMBER ACCOUNT... 4 STEP 2: ENTER DOMAIN NAME... 5 STEP 3: DOWNLOAD

More information

5. A small dialog window appears; enter a new password twice (this is different from Dori!) and hit Go.

5. A small dialog window appears; enter a new password twice (this is different from Dori!) and hit Go. Installing Wordpress from JMA Lab to JMA Server 1. Take note these instructions are streamlined for the JMA lab they can t be performed in this fashion from home! 2. Wordpress is a database driven web

More information

Creating Post(s) In WordPress

Creating Post(s) In WordPress Creating Post(s) In WordPress Posts In WordPress: Here is what posts are in WordPress: Posts are regular blog entries i.e. dynamic content. When any Post(s) are published, they appear automatically in

More information

Installing Joomla

Installing Joomla Installing Joomla 3.0.11 To start installing Joomla 3.X you have to copy the zipped file Joomla_3.0.1-Stable-Full_Package.zip to the folder in which you want to install Joomla 3.X. On a web host this is

More information

Configure Wildcard-Based Subdomains

Configure Wildcard-Based Subdomains Configure Wildcard-Based Subdomains Apache s virtual hosting feature makes it easy to host multiple websites or web applications on the same server, each accessible with a different domain name. However,

More information

Setting Up A WordPress Blog

Setting Up A WordPress Blog Setting Up A WordPress Blog Introduction WordPress can be installed alongside an existing website to be used solely as the 'blog' element of a website, or it can be set up as the foundation for an entire

More information

Apache, Php, MySql Configuration

Apache, Php, MySql Configuration 1.0 Introduction Apache, Php, MySql Configuration You will be guided to install the Apache web server and PHP and then configure them with MySQL database. There are several pre-requisite tasks MUST be

More information

SETTING UP 3 WORDPRESS SITES ON APACHE AND UBUNTU BY RAMI

SETTING UP 3 WORDPRESS SITES ON APACHE AND UBUNTU BY RAMI SETTING UP 3 WORDPRESS SITES ON APACHE AND UBUNTU 14.04 BY RAMI SETTING UP 3 WORDPRESS SITES ON APACHE SERVER AND UBUNTU 14.04 THE SET UP This may be a little rough in some places because not all the terms

More information

CSN09101 Networked Services. Module Leader: Dr Gordon Russell Lecturers: G. Russell

CSN09101 Networked Services. Module Leader: Dr Gordon Russell Lecturers: G. Russell CSN09101 Networked Services Week 8: Essential Apache Module Leader: Dr Gordon Russell Lecturers: G. Russell This lecture Configuring Apache Mod_rewrite Discussions Configuring Apache Apache Very well known

More information

Categories In WordPress

Categories In WordPress Categories In WordPress Categories provide a helpful way to group related posts together, and to quickly inform readers what a group of posts are about. Categories also make it easier for people to find

More information

Let's have a look at the normal Joomla! URLs:

Let's have a look at the normal Joomla! URLs: Joomla! v 1.5 Search Engine Friendly URLs (SEF URLs) A. What are SEF URLs? SEF means search engine friendly. Websites are considered search engine friendly if the pages can easily be found by search engines.

More information

An Introduction to. WordPress.com. ICA40311 Certificate IV in Web-Based Technologies Southbank Institute of Technology

An Introduction to. WordPress.com. ICA40311 Certificate IV in Web-Based Technologies Southbank Institute of Technology An Introduction to WordPress.com ICA40311 Certificate IV in Web-Based Technologies Southbank Institute of Technology Acknowledgement: This document was compiled from notes available via the WordPress.com

More information

SOCE Wordpress User Guide

SOCE Wordpress User Guide SOCE Wordpress User Guide 1. Introduction Your website runs on a Content Management System (CMS) called Wordpress. This document outlines how to modify page content, news and photos on your website using

More information

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition BLUEPRINT TEAM REPOSITORY Installation Guide for Windows For Requirements Center & Requirements Center Test Definition Table Of Contents Contents Table of Contents Getting Started... 3 About the Blueprint

More information

SO, ARE YOU READY? HERE WE GO:

SO, ARE YOU READY? HERE WE GO: Date: 28/09/2012 Procedure: How To Move WordPress To A New Server Or Host Source: LINK Permalink: LINK Created by: HeelpBook Staff Document Version: 1.0 HOW TO MOVE WORDPRESS TO A NEW SERVER OR HOST It

More information

SGW Documentation. Menu. Documentation Menu. WordPress Overview. Logging into WordPress. Adding a new page. Editing an existing page

SGW Documentation. Menu. Documentation Menu. WordPress Overview. Logging into WordPress. Adding a new page. Editing an existing page Home News Contact Us Site Search Report a Fault Menu SGW Documentation Documentation Menu WordPress Overview Logging into WordPress Adding a new page Editing an existing page Adding a new blog post for

More information

How To Clone, Backup & Move Your WordPress Blog! Step By Step Guide by Marian Krajcovic

How To Clone, Backup & Move Your WordPress Blog! Step By Step Guide by Marian Krajcovic How To Clone, Backup & Move Your WordPress Blog! Step By Step Guide by Marian Krajcovic 2010 Marian Krajcovic You may NOT resell or giveaway this ebook! 1 If you have many WordPress blogs and especially

More information

K-SEARCH TRIAL INSTALLATION MANUAL

K-SEARCH TRIAL INSTALLATION MANUAL K-SEARCH TRIAL INSTALLATION MANUAL Qsoft Inc, 2006-2009, All Rights Reserved Page 1 of 32 K-Search Trial Installation Manual Contents SYSTEM REQUIREMENTS... 3 1. DOWNLOADING K-SEARCH 15 DAYS TRIAL... 4

More information

Smart Links for SEO. Miva Module for Miva Merchant 5. Contents

Smart Links for SEO. Miva Module for Miva Merchant 5. Contents Smart Links for SEO user manual Miva Module for Miva Merchant 5 Contents Introduction Requirements Installation Rewrite Rules Template Customization Best Practices Support copyright 2009 by NetBlazon LLC

More information

Joomla Pre-install Tasks

Joomla Pre-install Tasks Joomla 3.0.1 Pre-install Tasks Before commencing the actual installation of Joomla CMS on your webhost you have to create: A MySQL database A MySQL user ( with password based access to the MySQL database

More information

In This Guide. Quick Start Guide REAL 737 edspace.american.edu

In This Guide. Quick Start Guide REAL 737 edspace.american.edu Quick Start Guide REAL 737 edspace.american.edu In This Guide Log In 2 Change Password 2 Create/Update Your Profile 2 Orientation to Dashboard, Toolbar, and Your Site 3 Introduction to your REAL 737 Group

More information

Lab 3.4.2: Managing a Web Server

Lab 3.4.2: Managing a Web Server Topology Diagram Addressing Table Device Interface IP Address Subnet Mask Default Gateway R1-ISP R2-Central Eagle Server S0/0/0 10.10.10.6 255.255.255.252 N/A Fa0/0 192.168.254.253 255.255.255.0 N/A S0/0/0

More information

Dacorum U3A. Computer Support Group

Dacorum U3A. Computer Support Group Dacorum U3A Computer Support Group Friday 28th October 2016 How to setup and Run a simple Wordpress Web site Agenda Identify topics to discuss in later meetings Overview of todays Presentation Wordpress

More information

PBHS WordPress Blog Manual v1.0

PBHS WordPress Blog Manual v1.0 PBHS WordPress Blog Manual v1.0 Logging into your WordPress Blog In our address bar at the top of your browser, enter in www.yourdomain.com/blog/wp admin and press enter on your keyboard. (substitute youtdomain.com

More information

Installing Dolphin on Your PC

Installing Dolphin on Your PC Installing Dolphin on Your PC Note: When installing Dolphin as a test platform on the PC there are a few things you can overlook. Thus, this installation guide won t help you with installing Dolphin on

More information

Jack s Coal Fired Pizza

Jack s Coal Fired Pizza Jack s Coal Fired Pizza WORDPRESS MANUAL TABLE OF CONTENTS Login... 3 Editing Existing Pages... 4 Adding New Pages... 7 Editing/Adding Text... 8 Creating a Link... 9 Linking to a PDF... 10 Making a Link

More information

Roxen Content Provider

Roxen Content Provider Roxen Content Provider Generation 3 Templates Purpose This workbook is designed to provide a training and reference tool for placing University of Alaska information on the World Wide Web (WWW) using the

More information

Mascot Insight Installation and setup guide

Mascot Insight Installation and setup guide Mascot Insight Installation and setup guide System requirements These are the system requirements for a Mascot Insight server. On the client side, Mascot Insight can be accessed from most web browsers.

More information

Administrative Training Mura CMS Version 5.6

Administrative Training Mura CMS Version 5.6 Administrative Training Mura CMS Version 5.6 Published: March 9, 2012 Table of Contents Mura CMS Overview! 6 Dashboard!... 6 Site Manager!... 6 Drafts!... 6 Components!... 6 Categories!... 6 Content Collections:

More information

Wordpress & Theme Installation

Wordpress & Theme Installation Wordpress & Theme Installation At this point you have already completed all of the planning for your new website so it is time to start installing the software you need to run it. Today we will be installing

More information

WORDPRESS 101 A PRIMER JOHN WIEGAND

WORDPRESS 101 A PRIMER JOHN WIEGAND WORDPRESS 101 A PRIMER JOHN WIEGAND CONTENTS Starters... 2 Users... 2 Settings... 3 Media... 6 Pages... 7 Posts... 7 Comments... 7 Design... 8 Themes... 8 Menus... 9 Posts... 11 Plugins... 11 To find a

More information

Wordpress Training Manual

Wordpress Training Manual The Dashboard... 2 If this is your first time logging in:... 2 How do I change my password or email address?... 3 Search Engine Optimization (SEO)... 4 SEO for Pages... 4 SEO for Images... 5 Managing Pages...

More information

Quick Start Manual for Mechanical TA

Quick Start Manual for Mechanical TA Quick Start Manual for Mechanical TA Chris Thornton cwthornt@cs.ubc.ca August 18, 2013 Contents 1 Quick Install 1 2 Creating Courses 2 3 User Management 2 4 Assignment Management 3 4.1 Peer Review Assignment

More information

SharpSchool Chapter 7 USER MANUAL EXTERNAL LINK PAGE For more information, please visit:

SharpSchool Chapter 7 USER MANUAL EXTERNAL LINK PAGE For more information, please visit: SHARPSCHOOL USER MANUAL CHAPTER 7 EXTERNAL LINK PAGE For more information, please visit: www.customernet.sharpschool.com www.sharpschool.com 0 TABLE OF CONTENTS 1. 2. 3. 4. INTRODUCTION... 1 KEY INFORMATION...

More information

app = web.application(urls, globals()) class hello: def GET(self, name): if not name: name = 'World' return 'Hello, ' + name + '!' if name == " main "

app = web.application(urls, globals()) class hello: def GET(self, name): if not name: name = 'World' return 'Hello, ' + name + '!' if name ==  main How to deploy web.py applications In this article you will learn how to deploy a web.py application under Linux / UNIX environments. You can refer to our article titled, How to install web.py if you don

More information

Type into the address bar of your web browser. You ll see this screen. Enter in the username and the password.

Type   into the address bar of your web browser. You ll see this screen. Enter in the username and the password. Type http://www.arlingtonmtw/wp-admin into the address bar of your web browser. You ll see this screen. Enter in the username and the password. user: Gallen pw: G@rth&3mma! Log in, and you ll see what

More information

Somatis Website Maintenance User's Manual

Somatis Website Maintenance User's Manual Somatis Website Maintenance User's Manual Somatis Web and Data Services Team 3 Name Jordan Padams Roles All 4/15/13 Version History Date Author Version Changes made Rationale 04/09/13 JP 1.0 Initial version

More information

Nextiva Drive The Setup Process Mobility & Storage Option

Nextiva Drive The Setup Process Mobility & Storage Option Nextiva Drive The Setup Process The Setup Process Adding Users 1. Login to your account and click on the Account icon at the top of the page (this is only visible to the administrator). 2. Click Create

More information

Argos. Basic Training

Argos. Basic Training Argos Basic Training Student Information Systems Team 2-4-2019 Contents Overview... 2 Sign in... 2 Navigation... 3 Action Area... 3 Navigation Area... 4 Explorer View... 4 Shortcuts View... 6 Help... 9

More information

User Manual. version 1.6-r1

User Manual. version 1.6-r1 User Manual version 1.6-r1 Contents 1 What is Confixx? - General Information 4 1.1 Login................................ 4 1.2 Settings Lag............................ 5 2 The Sections of the Web Interface

More information

HostPress.ca. User manual. July Version 1.0. Written by: Todd Munro. 1 P age

HostPress.ca. User manual. July Version 1.0. Written by: Todd Munro. 1 P age HostPress.ca User manual For your new WordPress website July 2010 Version 1.0 Written by: Todd Munro 1 P age Table of Contents Introduction page 3 Getting Ready page 3 Media, Pages & Posts page 3 7 Live

More information

How To Add/Modify Your Website Content

How To Add/Modify Your Website Content How To Add/Modify Your Website Content Table of Contents Log In to your Website & Admin Area... 1 WordPress Dashboard... 2 WordPress Posts & Pages... 3 Add a Post or Page... 4 Edit a Post or Page... 5

More information

Adobe Dreamweaver CS5 Tutorial

Adobe Dreamweaver CS5 Tutorial Adobe Dreamweaver CS5 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 layout,

More information

In the fourth unit you will learn how to upload and add images and PDF files.

In the fourth unit you will learn how to upload and add images and PDF files. Introduction Here at SUNY New Paltz, we use the Terminal Four (T4) web content management system (CMS). This puts the power of editing content on our college s webpage in the hands of our authorized users.

More information

General Use. Searching for Assets (All users) Browsing for Assets (All users) Viewing and Downloading an Asset (All Users)

General Use. Searching for Assets (All users) Browsing for Assets (All users) Viewing and Downloading an Asset (All Users) User Guide Rev1.1 Table of Contents General Use... 2 Searching for Assets (All users)... 2 Browsing for Assets (All users)... 2 Viewing and Downloading an Asset (All Users)... 2 Downloading Large Files

More information

Web Account Information

Web Account Information Web Account Information Google Admin Account, Webmaster Tools, and Analytics user: admin@aprepacademy.org pw: telle1314 Wordpress Back-End Login achievementprep.org/wp-admin username: admin password: B3th3Dr3am!

More information

Install & Configure Windows 10, Visual Studio, & MySQL Dr. Tom Hicks Trinity University

Install & Configure Windows 10, Visual Studio, & MySQL Dr. Tom Hicks Trinity University Install & Configure Windows 10, Visual Studio, & MySQL Dr. Tom Hicks Trinity University Windows 10 Install 1] Push the Next Button. 2] Push the Install Now Button. Windows-Database-Server-Installation-1.docx

More information

Installation Guide for the ALM Performance Tool

Installation Guide for the ALM Performance Tool http://almtoolbox.com Installation Guide for the ALM Performance Tool Before we start please remember that if you need any help with the installation process you can contact us at support@almtoolbox.com

More information

This chapter introduces you to the multisite feature that s built into the

This chapter introduces you to the multisite feature that s built into the Chapter 1: An Introduction to Multiple Sites In This Chapter Discovering where multiple sites began Exploring what you can do with multiple sites Configuring your web server This chapter introduces you

More information

XCloner. Official User Manual. Copyright 2010 JoomlaPlug.com All rights reserved.

XCloner. Official User Manual. Copyright 2010 JoomlaPlug.com  All rights reserved. XCloner Official User Manual Copyright 2010 JoomlaPlug.com www.joomlaplug.com All rights reserved. JoomlaPlug.com is not affiliated with or endorsed by Open Source Matters or the Joomla! Project. What

More information

EntraPass (W10) Installation Guide Kantech-OnBoard systems

EntraPass (W10) Installation Guide Kantech-OnBoard systems Overview Purpose ExacqVision recorders now include Kantech EntraPass Corporate Edition software. The purpose of this document is to guide the technician or installer through the process of installing and

More information

PASSPORTAL PLUGIN DOCUMENTATION

PASSPORTAL PLUGIN DOCUMENTATION Contents Requirements... 2 Install or Update Passportal Plugin Solution Center... 3 Configuring Passportal Plugin... 5 Client mapping... 6 User Class Configuration... 7 About the Screens... 8 Passportal

More information

INSTALLING GUIDE FOR A WEB SERVER

INSTALLING GUIDE FOR A WEB SERVER Installation and configuration of Apache 2.2, PHP5 enviroinment, MySQL 5.5 and phpmyadmin 3.4 By: Josué Gayán Báscones For: Web Application Deployment, 2 nd ASIX Josué Gayán Báscones Web Application Deployment

More information

RefWorks: Online Citation Management Software

RefWorks: Online Citation Management Software RefWorks: Online Citation Management Software RefWorks is an example of citation management software. Citation management software or personal bibliographic software allows you to collect and organize

More information

Adobe Dreamweaver CC 17 Tutorial

Adobe Dreamweaver CC 17 Tutorial Adobe Dreamweaver CC 17 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

Using PHPMyAdmin with WordPress

Using PHPMyAdmin with WordPress Using PHPMyAdmin with WordPress A basic run-down of some of the things you may want to do manually on your WordPress database. (Using PHPMyAdmin) Kenneth Hargis Managing Partner ken@orphicworkshop.com

More information

CAL 9-2: Café Soylent Green Chapter 12

CAL 9-2: Café Soylent Green Chapter 12 CAL 9-2: Café Soylent Green Chapter 12 This version is for those students who are using Dreamweaver CC. You will be completing the Forms Tutorial from your textbook, Chapter 12 however, you will be skipping

More information

Copyright Maxprograms

Copyright Maxprograms Copyright 2008-2017 Maxprograms Table of Contents Introduction... 1 RemoteTM Web Server... 1 Installation and Configuration... 2 Requirements... 2 Preparation... 2 Installation... 2 Email Server Configuration...

More information

of websites on the internet are WordPress

of websites on the internet are WordPress WELCOME TO WORDPRESS.COM This tutorial is available for download at fas.camden.rutgers.edu/wordpresscom Questions? Contact: Kate Blair at kate.blair@rutgers.edu What is WordPress? WordPress is an open

More information

SPECCHIO Administrators

SPECCHIO Administrators SPECCHIO Page 1 SPECCHIO Administration Guide Version: 2.2 Date: 31.05.2012 Status: Valid Author: A. Hueni, Remote Sensing Laboratories, University of Zurich File: \SPECCHIO AdminGuide_V2.2.docx Pages:

More information

Locate your Advanced Tools and Applications

Locate your Advanced Tools and Applications . phpmyadmin is a web-based application used to manage a MySQL database. It is free and open-source software. We have modified phpmyadmin so that it functions without errors on a shared hosting platform.

More information

In This Guide. More Help Elsewhere. Quick Start Guide WRTG 101 with Professor Hoskins edspace.american.edu

In This Guide. More Help Elsewhere. Quick Start Guide WRTG 101 with Professor Hoskins edspace.american.edu Quick Start Guide WRTG 101 with Professor Hoskins edspace.american.edu In This Guide Log In 2 Change Password 2 Change Display Name and Set Profile 3 Orientation to Dashboard and Toolbar 4 Setting Your

More information

Step by Step Guide Domain Security Pro

Step by Step Guide Domain Security Pro Step by Step Guide Domain Security Pro by Mark Dulisse Copyright 2013 DomainSecurityPro.com Page 1 Copyright 2013 by DomainSecurityPro.com All rights reserved. No part of this publication may be reproduced,

More information

WebMatrix: Why PHP Developers Should Pay Attention

WebMatrix: Why PHP Developers Should Pay Attention WebMatrix: Why PHP Developers Should Pay Attention Gone are the days when PHP developers had to turn away business because the clients used Windows Servers. If you are a PHP developer and have been looking

More information

Logging Into Your Site

Logging Into Your Site This training document is meant as a step-by-step guide to creating and delivering a UW-Madison site in the current UW-Madison theme. In this training class, you will learn how to log in to access your

More information

Perceptive Process Mining

Perceptive Process Mining Perceptive Process Mining Installation and Setup Guide Version: 2.8.x Written by: Product Knowledge, R&D Date: September 2016 2014-2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International,

More information

ALES Wordpress Editor documentation ALES Research websites

ALES Wordpress Editor documentation ALES Research websites ALES Wordpress Editor documentation ALES Research websites Contents Login... 2 Website Dashboard... 3 Editing menu order or structure... 4 Add a new page... 6 Move a page... 6 Select a page to edit...

More information

Bitnami Dolibarr for Huawei Enterprise Cloud

Bitnami Dolibarr for Huawei Enterprise Cloud Bitnami Dolibarr for Huawei Enterprise Cloud Description Dolibarr is an open source, free software package for small and medium companies, foundations or freelancers. It includes different features for

More information

Kollaborate Server. Installation Guide

Kollaborate Server. Installation Guide 1 Kollaborate Server Installation Guide Kollaborate Server is a local implementation of the Kollaborate cloud workflow system that allows you to run the service in-house on your own server and storage.

More information

MailEnable Connector for Microsoft Outlook

MailEnable Connector for Microsoft Outlook MailEnable Connector for Microsoft Outlook Version 1.41 This guide describes the installation and functionality of the MailEnable Connector for Microsoft Outlook. Features The MailEnable Connector for

More information

Mend for Eclipse quick start guide local analysis

Mend for Eclipse quick start guide local analysis The Semmle Mend for Eclipse plugin allows users to view Semmle results in Eclipse. This document describes how to install and use the plugin for local analysis. You can install the plugin using a Semmle

More information

Xton Access Manager GETTING STARTED GUIDE

Xton Access Manager GETTING STARTED GUIDE Xton Access Manager GETTING STARTED GUIDE XTON TECHNOLOGIES, LLC PHILADELPHIA Copyright 2017. Xton Technologies LLC. Contents Introduction... 2 Technical Support... 2 What is Xton Access Manager?... 3

More information

Backup and Restore. About Backup and Restore

Backup and Restore. About Backup and Restore About, page 1 Back Up DNA Center, page 2 Restore DNA Center, page 4 Schedule a Backup, page 5 About The backup and restore procedures for DNA Center can be used for the following purposes: To create backup

More information

Build a Personal Website in WordPress

Build a Personal Website in WordPress Build a Personal Website in WordPress I. Installing WordPress Setting up a WordPress install on your own domain can be done by following these simple steps: SIGN IN TO DOMAINS 1. Go to https://domains.unf.edu

More information

Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud

Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud Description ProcessMaker is an easy-to-use, open source workflow automation and Business Process Management platform, designed so Business

More information

How To Build A Free Website

How To Build A Free Website How To Build A Free Website Without knowing programming or anything else (WordPress) Omid Hosseini August 2016 003 Copyright notice 1 Copyright notice Omid Hosseini asserts his moral right as the author

More information

ADOBE DREAMWEAVER CS4 BASICS

ADOBE DREAMWEAVER CS4 BASICS ADOBE DREAMWEAVER CS4 BASICS Dreamweaver CS4 2 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 layout,

More information

Fairfield University Using Xythos for File Storage

Fairfield University Using Xythos for File Storage Fairfield University Using Xythos for File Storage Version 7.0 Table of Contents I: Accessing your Account...2 II: Uploading Files via the Web...2 III: Manage your Folders and Files via the Web...4 IV:

More information

0. Introduction On-demand. Manual Backups Full Backup Custom Backup Store Your Data Only Exclude Folders.

0. Introduction On-demand. Manual Backups Full Backup Custom Backup Store Your Data Only Exclude Folders. Backup & Restore 0. Introduction..2 1. On-demand. Manual Backups..3 1.1 Full Backup...3 1.2 Custom Backup 5 1.2.1 Store Your Data Only...5 1.2.2 Exclude Folders.6 1.3 Restore Your Backup..7 2. On Schedule.

More information

ARCHER Collaborative Workspace

ARCHER Collaborative Workspace ARCHER 1.0 ARCHER Collaborative Workspace System Administrator s Guide Installation Configuration Maintenance Overview... 3 Components... 3 Configuration... 5 Pre-requisites... 5 Installing Archer Collaborative

More information

Managing your Website s Content in WordPress

Managing your Website s Content in WordPress Managing your Website s Content in WordPress Prepared for Westmont Aged Care Services Ltd 1 December 2016 For further support please contact: Annie O Shea M: 0412 169 664 E: annie@webstrategies.net.au

More information

SharePoint. Team Site End User Guide. Table of Contents

SharePoint. Team Site End User Guide. Table of Contents Table of Contents Introduction... 1 Logging in for the First Time:... 1 Areas of the team site:... 2 Navigating the team site:... 3 Adding Content to the team site:... 3 The Ribbon:... 3 Adding a Link:...

More information

CUPA-HR Chapters: WordPress Reference Guide

CUPA-HR Chapters: WordPress Reference Guide CUPA-HR Chapters: WordPress Reference Guide Table of Contents How to Log In to WordPress... 1 How to Create a Page in WordPress... 2 Editing a Page in WordPress... 5 Adding Links in WordPress... 6 Adding

More information

3. IMPORTANT: When prompted, accept the default Installation directory.

3. IMPORTANT: When prompted, accept the default Installation directory. Installing ProView 4.0.1 on your PC 1. Insert the ProView 4.0.1 CD-ROM into your CD-ROM Drive. The Install Shield Wizard should run automatically. If it does not, click Start then Run. Enter D:\setup.exe

More information

WEB CREATOR PAGES MANAGER

WEB CREATOR PAGES MANAGER WEB CREATOR PAGES MANAGER TABLE OF CONTENTS TABLE OF CONTENTS... 2 ADMINISTRATIVE PERMISSIONS... 3 ACCESSING WEBSITE SETTINGS... 3 PAGES MANAGER... 3 Accessing Pages Manager... 3 PAGE MANAGER NAVIGATION...

More information

Space Details. Available Pages. Confluence Help Description: Last Modifier (Mod. Date): ljparkhi (Aug 14, 2008)

Space Details. Available Pages. Confluence Help Description: Last Modifier (Mod. Date): ljparkhi (Aug 14, 2008) Space Details Key: confhelp Name: Confluence Help Description: Creator (Creation Date): ljparkhi (Aug 14, 2008) Last Modifier (Mod. Date): ljparkhi (Aug 14, 2008) Available Pages Quickstart Guide Working

More information

CAIMS website user guide

CAIMS website user guide CAIMS website user guide!1 Adding content Posts versus pages The CAIMS site is based on content management system (CMS). CMSs manage the back-end tasks of populating a site with user content from site

More information

Configuring RentalPoint Web Services

Configuring RentalPoint Web Services Table of Contents 1. What is RentalPoint Web Services? 2 2. How to Configure Your Server 2 2.1 Download and Install.NET Framework 4.5.1 2 2.2 Download and Install IIS 2 2.3 Download and Install RPWS Files

More information

MAGENTO 2 INSTALL EXTENSION MANUALLY

MAGENTO 2 INSTALL EXTENSION MANUALLY MAGENTO 2 INSTALL EXTENSION MANUALLY As you may know, there are two most popular ways of installing Magento 2 extension manually. The first one is to use COMMAND LINE (recommended) and the second one is

More information

MailEnable Connector for Microsoft Outlook

MailEnable Connector for Microsoft Outlook MailEnable Connector for Microsoft Outlook Version 1.36 This guide describes the installation and functionality of the MailEnable Connector for Microsoft Outlook. Features The MailEnable Connector for

More information

Embedded101 Blog User Guide

Embedded101 Blog User Guide Serving the Windows Embedded Community Embedded101 Blog User Guide Using Windows Live Write 2011 To Upload Blog Entry Samuel Phung Windows Embedded MVP http://www.embedded101.com Screen captured with Snagit

More information

Imagery International website manual

Imagery International website manual Imagery International website manual Prepared for: Imagery International Prepared by: Jenn de la Fuente Rosebud Designs http://www.jrosebud.com/designs designs@jrosebud.com 916.538.2133 A brief introduction

More information

Part 2 Uploading and Working with WebCT's File Manager and Student Management INDEX

Part 2 Uploading and Working with WebCT's File Manager and Student Management INDEX Part 2 Uploading and Working with WebCT's File Manager and Student Management INDEX Uploading to and working with WebCT's File Manager... Page - 1 uploading files... Page - 3 My-Files... Page - 4 Unzipping

More information

CMS Manual with Shopping Cart (Shopp)

CMS Manual with Shopping Cart (Shopp) CMS Manual with Shopping Cart (Shopp) Contact Details: Ray Giridharan Email: ray@totalmarketingaustralia.com.au Contact: 0433 399 294 Website: www.totalmarketingaustralia.com.au Index 1. How to Login to

More information

We want to install putty, an ssh client on the laptops. In the web browser goto:

We want to install putty, an ssh client on the laptops. In the web browser goto: We want to install putty, an ssh client on the laptops. In the web browser goto: www.chiark.greenend.org.uk/~sgtatham/putty/download.html Under Alternative binary files grab 32 bit putty.exe and put it

More information

CollabNet Desktop - Microsoft Windows Edition

CollabNet Desktop - Microsoft Windows Edition CollabNet Desktop - Microsoft Windows Edition User Guide 2009 CollabNet Inc. CollabNet Desktop - Microsoft Windows Edition TOC 3 Contents Legal fine print...7 CollabNet, Inc. Trademark and Logos...7 Chapter

More information

Welcome to the CP Portal

Welcome to the CP Portal Welcome to the CP Portal Access your school documents from home Launch Internet Explorer and navigate to: https://files.cpcsc.k12.in.us/htcomnet/ Click on Continue to this website (not recommended) Key

More information