Big Bad Moodle Guide By Mike Tupker Version 1

Size: px
Start display at page:

Download "Big Bad Moodle Guide By Mike Tupker mtupker@mtmercy.edu Version 1"

Transcription

1 Big Bad Moodle Guide By Mike Tupker Version 1 Introduction. I m a Desktop Technician/Network Administrator at Mount Mercy College in Cedar Rapids Iowa. This document is a how to for the popular open source course management system Moodle. Since most of my experience with moodle has been from a MS Windows perspective, that s what I ll focus on in this document. (Once Moodle is running there is almost no difference in configuring it when its running on Windows, Linux, or a Mac.) Moodle is a very widely used CMS system. It contains most of the features of any other closed source CMS which usually cost big $$$. For a more detailed overview please consult the Moodle.org web site. This document is free for distribution. Feel free to do what you would like with it. I would also like to thank the Moodle team and everyone who posts to the Moodle forums who has helped to make Moodle such a great piece of software. Requirements. OS: Linux, windows, OS X Servers: MySQL (preferred), PHP, Apache, IIS (if you can get php working in IIS) Not sure about it? Try it out the easy way. There is a wonderful package at that will install everything you need to get a test system up and running in no time. This Moodle package comes with the Moodle CMS and easyphp. For those of you who don t know what easyphp is, it is a package that installs preconfigured versions of Apache, MySQL, and PHP. Unfortunately, the status page in easyphp is written in French. It shouldn t affect anything though. Personally, I prefere WAMP avalible at Setup.

2 WAMPserver does not come with an installer that also installs Moodle. To install Moodle, download Moodle from Moodle.org, uncompress it, and drop it in c:\wamp\www. You should now be able to browse to the URL On the lower part of the page click on the link for the directory you just created with the Moodle distribution inside. You will then be brought to the moodle setup page. Click next.

3 Check to see if there are any PHP setting that didn t pass. If some didn t pass edit you php.ini file looking for this section. ;Windows Extensions ;Note that ODBC support is built in, so no dll is needed for it. ; ;extension=php_bz2.dll ;extension=php_cpdf.dll ;extension=php_curl.dll ;extension=php_dba.dll ;extension=php_dbase.dll ;extension=php_dbx.dll ;extension=php_exif.dll ;extension=php_fdf.dll ;extension=php_filepro.dll extension=php_gd2.dll extension=php_gettext.dll ;extension=php_iconv.dll ;extension=php_ifx.dll ;extension=php_iisfunc.dll extension=php_imap.dll ;extension=php_interbase.dll extension=php_ldap.dll extension=php_mbstring.dll

4 ;extension=php_mcrypt.dll ;extension=php_mhash.dll extension=php_mime_magic.dll ;extension=php_ming.dll ;extension=php_mssql.dll ;extension=php_msql.dll extension=php_mysql.dll extension=php_mysqli.dll ;extension=php_oci8.dll extension=php_openssl.dll ;extension=php_oracle.dll ;extension=php_pdf.dll ;extension=php_pgsql.dll ;extension=php_shmop.dll ;extension=php_snmp.dll ;extension=php_sockets.dll ;extension=php_sybase_ct.dll ;extension=php_tidy.dll ;extension=php_w32api.dll ;extension=php_xmlrpc.dll ;extension=php_xsl.dll ;extension=php_yaz.dll ;extension=php_zip.dll Notice the line that says extension=php_gd2.dll. To active this extension simply remove the preceding semicolon and restart Apache. Do this for any extensions you will need. (NOTE: If you are planning to use LDAP or Microsoft Active Directory for authentication or enrolment you must active the ldap extension.) (ADDISSIONAL NOTE: You may have to copy libeay32.dll and ssleay32.dll to your windows\system32 directory.) The check on the page called memory limit, should be changed for production servers. To change the limit go to this section in the php.ini file: ;;;;;;;;;;;;;;;;;;; ; Resource Limits ; ;;;;;;;;;;;;;;;;;;;.. memory_limit = 8M. ; Maximum amount of memory a script may consume (8MB) Change the memory limit to something large enough to meet your school or corporation s needs. 256 seems to work well of us. Make sure not to set this to a value larger that the amount of physical memory you have on your machine.

5 Click next when all the check are ok. The only thing that you should worry about here is the web address. By default it is set to The localhost portion should be changed to the DNS name of the server that moodle resides on. Otherwise anyone who try s to connect to the moodle server will get the address localhost in any urls they click on within the site. Click next. Before you proceed, the database must be created. Left click on the WAMP icon in the system tray and select phpmyadmin

6 In the create new database field type in moodle and click the create button. Then close the window.

7 This page is where your database settings are entered. For simplicity, we will use the defaults that WAMP uses. These should be changed if you are setting up production server. Type: mysql Host Server: localhost Database: moodle User: root Password: (leave blank) Table Prefix: mdl_ Click next.

8 If you see this click continue. Click yes to the license agreement. Click Continue until you get to the screen titled Variables. Change any settings you need to. These are going to be different for everyone so I m not going to go into them here. Each setting has a very good description next to it explaining what the setting does. When you are finished, go to the bottom of the page and click save. (NOTE: The Variables can be changed later) Click continue a few more times until you get to the page titled Site Settings.

9 Enter in what you would like here. This can also be changed later. Click save changes. The next page is VERY important.

10 Write the login and password down and don t loose it, otherwise you could be locked out of your site. When you are done click update profile. There your Moodle system is now setup.

11 LDAP. Once you get an understanding of LDAP, this shouldn t be too hard to setup. Our system authenticates to MS Active Directory, which is what I will show you how to setup here. From the main moodle page, click on the users link to the left.

12 Click on Authentication. Next select ldap from the pull down menu at the top of the screen. Here are the settings we have used. LDAP server settings ldap_host_url: ldap:// ldap_version: 3 Bind settings ldap_preventpassindb: yes ldap_bind_dn: CN=ldapuser,OU=users,DC=mtmercy,DC=edu ldap_bind_pw: ldappassword (NOTE: the ldap_bind variables should be for an account that no one uses in active directory. Active Directory does not allow anonymous lookups so this account is needed.) User lookup settings ldap_user_type: MS ActiveDirecory ldap_contexts: OU=it_staff,DC=mtmercy,DC=edu;OU=faculty,DC=mtmercy,DC=edu;OU=nur sing,dc=mtmercy,dc=edu;ou=student Accounts,DC=mtmercy,DC=edu;OU=library,DC=mtmercy,DC=edu;OU=admin istrative Software,DC=mtmercy,DC=edu (NOTE: These are the organizational unit locations where the user accounts are located that you would like to be able to login to your moodle system. ldap_search_sub: yes ldap_opt_deref: no ldap_user_attribute: samaccountname (NOTE: This is the username attribute in Active Directory. For example, the user Joe Smith has the username jsmith. Jsmith is the samaccountname.) ldap_memberattribute: memberof (NOTE: This field contains group memberships.) ldap_objectclass: (leave blank) Force change password Force change password: No

13 Use standard Change Password Page: No LDAP password expiration settings. ldap_expiration: No ldap_expiration_warning: 10 ldap_exprireattr: (leave blank) ldap_gracelogins: No ldap_graceattr: (leave blank) Enable user creation ldap_create_context: (leave blank) Course creators ldap_creators: (NOTE: This field works the same as the ldap_contexts field and allows for multiple contexts.) Data mapping (NOTE: I will go over this more in the section on importing users into Active Directory, but for now, these are the fields that I use.) First name: givenname Surname: sn address: mail ID number: EmployeeID Each of the Data Mapping fields has options to: Update local Update external Lock value Update local will affect the value stored in the local MySQL database. Update external will update the external database where the data is being pulled from. (I have not been able to get this to work with Active Direcory. If you get it to work please let me know.) You can also use lock value to keep people from changing the data in the fields. This is very useful for the ID Number field, as it is used for enrollment using an external source. Instructions: (This is a window that appears next to the login information. If can contain anything you want.) Change password URL: (If you selected no for the option to use the standard password change screen. Then this field is used. I have mine set to redirect to the iisadmpwd password change web page. Do a google search if you don t know what this is.)

14 Guest login button: Hide Enable user creation: No Alternate Login URL: (leave blank) Click save changes. Creating a lot of users in Active Directory. I m not going to go into much detail on this. None of our students had user accounts in active directory, so we had to create them. There are many ways to do this but here is a command that will parse a CSV file containing login information for users. The file contains information formatted like this: Firstname,lastname,studentnumebr,studentID For us the student number controls enrolment. StudentID is the number on the student s id card. StudentID will be the students starting password. Now for the command. for /F "eol=; tokens=1,2,3,4 delims=," %a in (ldapusers.csv) do dsadd user "cn=%b %a,ou=testing,dc=mtmercy,dc=edu" -samid %a%b -fn %a -ln %b - display "%b, %a" -pwd %d - %a%b@mtmercy.edu -disabled no -empid %c A few notes: Dsadd = AD attirbute Fn = firstname Ln = sn = mail Samid = samaccountname Empid = EmployeeID Display = DisplayName The file that contains the users and id numbers is ldapusers.csv. If you are familiar with DOS commands this might look familiar. Type dsadd in the command prompt for information on what this command can do. The dsadd tool comes with the Microsoft Windows Server 2003 Resource Kit which can be downloaded from Microsoft. Enrolment using a flat file.

15 Flat files are by far the easiest way to do enrolment in moodle. We are pulling our enrolment data out of a MSSQL database using an MS Access connector and creating a table which gets exported to a CSV file. That CSV file is then imported every 5 minutes into moodle using Moodlecron. Moodlecron is a necessity. GET MOODLECRON HERE! -> Moodle Cron for Windows Comma separated file assumed to have four or six fields per line: operation, role, idnumber(user), idnumber(course) [, starttime, endtime] where: operation = add del role = student teacher teacheredit idnumber(user) = idnumber in the user table NB not id idnumber(course) = idnumber in the course table NB not id starttime = start time (in seconds since epoch) - optional endtime = end time (in seconds since epoch) - optional In this case add is the operation (can be del). Student is the type of enrolment (can be teacheredit or teacher). 5 is the studentid. And CF101 is the course number.

16 enrol_flatfilelocation: d:\coursesenrollment.csv enrol_mailstudents: will mail students when they are added to a course enrol_mailteachers: will mail teachers when they are added to a course enrol_mailadmins: I think it will mail admins when enrolments happen. enrol_allowinternal: Checking this box will allow students to enroll themselves in classes. Should leave this blank if your registrar has a process for this already. Moodle Cron. If you have used Linux then you probably know what this is. It runs a php script at regular intervals much like Windows scheduled tasks. I set it to run every 5 minutes. There are several moodle php scripts that can run using moodlecron, but the one you should worry about is It does a bunch of things including sending out notification s and processing the enrolment file. You can go to the above address to see yours in action or there is a picture below.

17 This page actually goes on for a while. Moodle Hacks. Change the course settings page so teachers can t change the course ID number. Open the course\edit.html file and change: <tr valign="top"> <td align="right"><?php print_string("idnumber")?>:</td> <td><input type="text" name="idnumber" maxlength="100" size="10" value="<?php p($form->idnumber)?>" alt="><?php print_string("idnumber")?>" />

18 <?php helpbutton("courseidnumber", get_string("idnumber"))?> <?php if (isset($err["idnumber"])) formerr($err["idnumber"]);?> </td> </tr> To: <tr valign="top"> <td align="right"><?php print_string("idnumber")?>:</td> <?php if( isadmin()){ echo "<td><input type=\"text\" name=\"idnumber\" maxlength=\"100\" size=\"10\" value=\"".$form->idnumber."\" alt=\"".print_string("idnumber")."\" />"; } else { echo "<td><input type=\"hidden\" name=\"idnumber\" value=\"".$form->idnumber."\">".$form->idnumber; }?> <?php helpbutton("courseidnumber", get_string("idnumber"))?> <?php if (isset($err["idnumber"])) formerr($err["idnumber"]);?> </td> </tr> Modules on The gradebook and mail enhancements are very nice. To install the gradebook uncompress the download and drop the files into the \grade directory. You might want to backup the directory first in case you don t like the changes. To install the mail module uncompress the download, create a directory in \blocks for the enhancement, and place the downloaded files there. Next log into moodle as an administrator and go to the admin menu. You should get a message saying the module has been installed. It should now be available on the add block pull down in edit mode. There are some other good addons at

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

Installing Drupal on Your Local Computer

Installing Drupal on Your Local Computer Installing Drupal on Your Local Computer This tutorial will help you install Drupal on your own home computer and allow you to test and experiment building a Web site using this open source software. This

More information

Installing Moodle on a Windows x64 Environment

Installing Moodle on a Windows x64 Environment Installing Moodle on a Windows x64 Environment Installing Moodle 1.9 on a Windows Server 2008 x64 with Microsoft SQL Server 2008 and IIS7. Written by: Alex Pearce Email: apearce@bfcnetworks.com Blog: www.learninggateway.net/blogs/ajp

More information

Installing Moodle for Windows with Easy PHP Illustrated Install Guide By Floyd Collins

Installing Moodle for Windows with Easy PHP Illustrated Install Guide By Floyd Collins Installing Moodle for Windows with Easy PHP Illustrated Install Guide By Floyd Collins This guide will take you step by step through the install process of Moodle for Windows. I highly recommend that you

More information

Installation Instructions

Installation Instructions Installation Instructions 25 February 2014 SIAM AST Installation Instructions 2 Table of Contents Server Software Requirements... 3 Summary of the Installation Steps... 3 Application Access Levels... 3

More information

MOODLE Installation on Windows Platform

MOODLE Installation on Windows Platform Windows Installation using XAMPP XAMPP is a fully functional web server package. It is built to test web based programs on a personal computer. It is not meant for online access via the web on a production

More information

Installation Instructions

Installation Instructions WampServer Installation Instructions The Web pages that students create in CIT 173 PHP Programming contain code that must be processed by a Web server. It isn t possible to open PHP files directly using

More information

Document History Revision 5.0.2 Date: October 30, 2006

Document History Revision 5.0.2 Date: October 30, 2006 vtiger CRM 5.0.2 Installation Manual (For Wiindows OS) Document History Revision 5.0.2 Date: October 30, 2006 - 2 - Table of Contents 1. System Requirements...3 2. How do I choose right distribution?...4

More information

Welcome to Collage (Draft v0.1)

Welcome to Collage (Draft v0.1) Welcome to Collage (Draft v0.1) Table of Contents Welcome to Collage (Draft v0.1)... 1 Table of Contents... 1 Overview... 2 What is Collage?... 3 Getting started... 4 Searching for Images in Collage...

More information

Backup and Restore MySQL Databases

Backup and Restore MySQL Databases Backup and Restore MySQL Databases As you use XAMPP, you might find that you need to backup or restore a MySQL database. There are two easy ways to do this with XAMPP: using the browser-based phpmyadmin

More information

TIMETABLE ADMINISTRATOR S MANUAL

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

More information

How to Move an SAP BusinessObjects BI Platform System Database and Audit Database

How to Move an SAP BusinessObjects BI Platform System Database and Audit Database How to Move an SAP BusinessObjects BI Platform System Database and Audit Database Technology Used SAP BI Platform 4.1 (this includes SAP BusinessObjects Enterprise 4.1, SAP BusinessObjects Edge 4.1 and

More information

Install Apache on windows 8 Create your own server

Install Apache on windows 8 Create your own server Source: http://www.techscio.com/install-apache-on-windows-8/ Install Apache on windows 8 Create your own server Step 1: Downloading Apache Go to Apache download page and download the latest stable version

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

Kollaborate Server Installation Guide!! 1. Kollaborate Server! Installation Guide!

Kollaborate Server Installation Guide!! 1. 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

More information

Creating Organizational Units, Accounts, and Groups. Active Directory Users and Computers (ADUC) 21/05/2013

Creating Organizational Units, Accounts, and Groups. Active Directory Users and Computers (ADUC) 21/05/2013 Creating Organizational Units, Accounts, and Groups Tom Brett Active Directory Users and Computers (ADUC) Active Directory Users and Computers (ADUC) After installing AD DS, the next task is to create

More information

Active Directory Integration for Greentree

Active Directory Integration for Greentree App Number: 010044 Active Directory Integration for Greentree Last Updated 14 th February 2013 Powered by: AppsForGreentree.com 2013 1 Table of Contents Features... 3 Options... 3 Important Notes... 3

More information

Configure Single Sign on Between Domino and WPS

Configure Single Sign on Between Domino and WPS Configure Single Sign on Between Domino and WPS What we are doing here? Ok now we have the WPS server configured and running with Domino as the LDAP directory. Now we are going to configure Single Sign

More information

Getting Started with Dynamic Web Sites

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

More information

Cloudwork Dashboard User Manual

Cloudwork Dashboard User Manual STUDENTNET Cloudwork Dashboard User Manual Make the Cloud Yours! Studentnet Technical Support 10/28/2015 User manual for the Cloudwork Dashboard introduced in January 2015 and updated in October 2015 with

More information

Expresso Quick Install

Expresso Quick Install Expresso Quick Install 1. Considerations 2. Basic requirements to install 3. Install 4. Expresso set up 5. Registering users 6. Expresso first access 7. Uninstall 8. Reinstall 1. Considerations Before

More information

SecureAware on IIS8 on Windows Server 2008/- 12 R2-64bit

SecureAware on IIS8 on Windows Server 2008/- 12 R2-64bit SecureAware on IIS8 on Windows Server 2008/- 12 R2-64bit Note: SecureAware version 3.7 and above contains all files and setup configuration needed to use Microsoft IIS as a front end web server. Installing

More information

INSTALLATION GUIDE VERSION

INSTALLATION GUIDE VERSION INSTALLATION GUIDE VERSION 4.1 2014 Copyright 2008 2014. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means electronic or mechanical, for any purpose

More information

Weston Public Schools Virtual Desktop Access Instructions

Weston Public Schools Virtual Desktop Access Instructions Instructions for connecting to the Weston Schools Virtual Desktop Environment Notes: You will have to have administrator permission on your computer in order to install a VMWare Client application which

More information

Training module 2 Installing VMware View

Training module 2 Installing VMware View Training module 2 Installing VMware View In this second module we ll install VMware View for an End User Computing environment. We ll install all necessary parts such as VMware View Connection Server and

More information

Content Filtering Client Policy & Reporting Administrator s Guide

Content Filtering Client Policy & Reporting Administrator s Guide Content Filtering Client Policy & Reporting Administrator s Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your system. CAUTION: A CAUTION

More information

Setting Up a Development Server

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

More information

IIS, FTP Server and Windows

IIS, FTP Server and Windows IIS, FTP Server and Windows The Objective: To setup, configure and test FTP server. Requirement: Any version of the Windows 2000 Server. FTP Windows s component. Internet Information Services, IIS. Steps:

More information

ethink Education Moodle Faculty Quick Reference Guide

ethink Education Moodle Faculty Quick Reference Guide Introduction... 2 Editing Your Profile... 4 Opening Your Course... 6 Course Settings... 8 Editing Your Course... 11 Cross-Tallied Courses... 15 Simulate Student Role... 16 Grades... 17 Course Evaluation...

More information

escan SBS 2008 Installation Guide

escan SBS 2008 Installation Guide escan SBS 2008 Installation Guide Following things are required before starting the installation 1. On SBS 2008 server make sure you deinstall One Care before proceeding with installation of escan. 2.

More information

Install Moodle with RollCall 2013 PowerVista Software, Inc.

Install Moodle with RollCall 2013 PowerVista Software, Inc. Install Moodle with RollCall Note: To change the product logo for your ow n print manual or PDF, click "Tools > Manual Designer" and modify the print manual template. Title page 1 Use this page to introduce

More information

Configuration Guide. BES12 Cloud

Configuration Guide. BES12 Cloud Configuration Guide BES12 Cloud Published: 2016-04-08 SWD-20160408113328879 Contents About this guide... 6 Getting started... 7 Configuring BES12 for the first time...7 Administrator permissions you need

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

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link:

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: ftp://ftp.software.ibm.com/storage/tivoli-storagemanagement/maintenance/client/v6r2/windows/x32/v623/

More information

Nevepoint Access Manager 1.2 BETA Documentation

Nevepoint Access Manager 1.2 BETA Documentation Nevepoint Access Manager 1.2 BETA Documentation Table of Contents Installation...3 Locating the Installation Wizard URL...3 Step 1: Configure the Administrator...4 Step 2: Connecting to Primary Connector...4

More information

SchoolBooking SSO Integration Guide

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

More information

Symantec PGP Whole Disk Encryption Hands-On Lab V 3.7

Symantec PGP Whole Disk Encryption Hands-On Lab V 3.7 Symantec PGP Whole Disk Encryption Hands-On Lab V 3.7 Description This hands-on lab session covers the hard drive encryption technologies from PGP. Students will administer a typical Whole Disk Encryption

More information

How To Set Up A Macintosh With A Cds And Cds On A Pc Or Macbook With A Domain Name On A Macbook (For A Pc) For A Domain Account (For An Ipad) For Free

How To Set Up A Macintosh With A Cds And Cds On A Pc Or Macbook With A Domain Name On A Macbook (For A Pc) For A Domain Account (For An Ipad) For Free Setting Up a Macintosh For Use In The Medical Center The purpose of this document is to provide some assistance and direction to the users of Macintosh computers in The Medical Center network environment.

More information

How to install phpbb forum on NTU student club web server

How to install phpbb forum on NTU student club web server How to install phpbb forum on NTU student club web server This guide contains the step by step instructions to install phpbb (stable release 3.0.7- PL1) on NTU student club web server. It does not cover

More information

freesshd SFTP Server on Windows

freesshd SFTP Server on Windows freesshd SFTP Server on Windows Configuration Steps: Setting up the Bridgestone User ID... 2 Setup the freesshd Server... 3 Login as the Bridgestone User ID using WinSCP... 5 Create Default Bridgestone

More information

LDAP User Guide PowerSchool Premier 5.1 Student Information System

LDAP User Guide PowerSchool Premier 5.1 Student Information System PowerSchool Premier 5.1 Student Information System Document Properties Copyright Owner Copyright 2007 Pearson Education, Inc. or its affiliates. All rights reserved. This document is the property of Pearson

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

LDAP and Active Directory Guide

LDAP and Active Directory Guide LDAP and Active Directory Guide Contents LDAP and Active Directory Guide...2 Overview...2 Configuring for LDAP During Setup...2 Deciding How to Use Data from LDAP... 2 Starting the Setup Tool... 3 Configuring

More information

Quick Start Guide for Parallels Virtuozzo

Quick Start Guide for Parallels Virtuozzo PROPALMS VDI Version 2.1 Quick Start Guide for Parallels Virtuozzo Rev. 1.1 Published: JULY-2011 1999-2011 Propalms Ltd. All rights reserved. The information contained in this document represents the current

More information

SQL Server Setup for Assistant/Pro applications Compliance Information Systems

SQL Server Setup for Assistant/Pro applications Compliance Information Systems SQL Server Setup for Assistant/Pro applications Compliance Information Systems The following document covers the process of setting up the SQL Server databases for the Assistant/PRO software products form

More information

Sentral servers provide a wide range of services to school networks.

Sentral servers provide a wide range of services to school networks. Wazza s QuickStart File Sharing for Macs on a Sentral Server Mac OS X, Sentral Background Sentral servers provide a wide range of services to school networks. One of those services is a space for sharing

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

User Guide. Time Warner Cable Business Class Cloud Solutions Control Panel. Hosted Microsoft Exchange 2007 Hosted Microsoft SharePoint 2007

User Guide. Time Warner Cable Business Class Cloud Solutions Control Panel. Hosted Microsoft Exchange 2007 Hosted Microsoft SharePoint 2007 Chapter Title Time Warner Cable Business Class Cloud Solutions Control Panel User Guide Hosted Microsoft Exchange 2007 Hosted Microsoft SharePoint 2007 Version 1.1 Table of Contents Table of Contents...

More information

Installing Microsoft Outlook on a Macintosh. This document explains how to download, install and configure Microsoft Outlook on a Macintosh.

Installing Microsoft Outlook on a Macintosh. This document explains how to download, install and configure Microsoft Outlook on a Macintosh. Reference : USER184 Issue date : December 2002 Revision date : September 2007 Classification : Software Originator : Hugh Burt REVISED DOCUMENT Installing Microsoft Outlook on a Macintosh This document

More information

User guide. Business Email

User guide. Business Email User guide Business Email June 2013 Contents Introduction 3 Logging on to the UC Management Centre User Interface 3 Exchange User Summary 4 Downloading Outlook 5 Outlook Configuration 6 Configuring Outlook

More information

How to Install SMTPSwith Mailer on Centos Server/VPS

How to Install SMTPSwith Mailer on Centos Server/VPS How to Install SMTPSwith Mailer on Centos Server/VPS SMTPSwitch Mailer User Guide V4.0 SMTPSwitch Mailer is a web based email marketing software that runs on a web server or online server. An online server

More information

VMware Identity Manager Administration

VMware Identity Manager Administration VMware Identity Manager Administration VMware Identity Manager 2.4 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

Web+Center Version 7.x Windows Quick Install Guide 2 Tech Free Version Rev March 7, 2012

Web+Center Version 7.x Windows Quick Install Guide 2 Tech Free Version Rev March 7, 2012 Web+Center Version 7.x Windows Quick Install Guide 2 Tech Free Version Rev March 7, 2012 1996-2012 Internet Software Sciences Welcome to the Web+Center Installation and Configuration guide. This document

More information

equate Installation QUICK START GUIDE

equate Installation QUICK START GUIDE equate Installation QUICK START GUIDE CONTENTS 1 Before You Begin 2 Server Installation 3 Server Configuration 3a Connecting to VirtueMart / Prestashop 4 Client Installation (Windows) 5 Client Installation

More information

Test Case 3 Active Directory Integration

Test Case 3 Active Directory Integration April 12, 2010 Author: Audience: Joe Lowry and SWAT Team Evaluator Test Case 3 Active Directory Integration The following steps will guide you through the process of directory integration. The goal of

More information

Snow Inventory. Installing and Evaluating

Snow Inventory. Installing and Evaluating Snow Inventory Installing and Evaluating Snow Software AB 2002 Table of Contents Introduction...3 1. Evaluate Requirements...3 2. Download Software...3 3. Obtain License Key...4 4. Install Snow Inventory

More information

USING MS OUTLOOK. Microsoft Outlook

USING MS OUTLOOK. Microsoft Outlook USING MS OUTLOOK In this tutorial you will learn how to use Microsoft Outlook with your EmailHosting.com account. You will learn how to setup an IMAP account, and also how to move your emails and contacts

More information

Ulteo Open Virtual Desktop Installation

Ulteo Open Virtual Desktop Installation Ulteo Open Virtual Desktop Installation Copyright 2008 Ulteo SAS - CONTENTS CONTENTS Contents 1 Prerequisites 2 1.1 Installation of MySQL....................................... 2 2 Session Manager (sm.ulteo.com)

More information

Migrating helpdesk to a new server

Migrating helpdesk to a new server Migrating helpdesk to a new server Table of Contents 1. Helpdesk Migration... 2 Configure Virtual Web on IIS 6 Windows 2003 Server:... 2 Role Services required on IIS 7 Windows 2008 / 2012 Server:... 2

More information

Written by: Johan Strand, Reviewed by: Chafic Nassif, Date: 2006-04-26. Getting an ipath server running on Linux

Written by: Johan Strand, Reviewed by: Chafic Nassif, Date: 2006-04-26. Getting an ipath server running on Linux Getting an ipath server running on Linux Table of Contents Table of Contents... 2 1.0. Introduction... 3 2.0. Overview... 3 3.0. Installing Linux... 3 4.0. Installing software that ipath requires... 3

More information

Installing The SysAidTM Server Locally

Installing The SysAidTM Server Locally Installing The SysAidTM Server Locally Document Updated: 17 October 2010 Introduction SysAid is available in two editions: a fully on-demand ASP solution and an installed, in-house solution for your server.

More information

13.1 Backup virtual machines running on VMware ESXi / ESX Server

13.1 Backup virtual machines running on VMware ESXi / ESX Server 13 Backup / Restore VMware Virtual Machines Tomahawk Pro This chapter describes how to backup and restore virtual machines running on VMware ESX, ESXi Server or VMware Server 2.0. 13.1 Backup virtual machines

More information

USING MS OUTLOOK WITH FUSEMAIL

USING MS OUTLOOK WITH FUSEMAIL USING MS OUTLOOK WITH FUSEMAIL In this tutorial you will learn how to use Microsoft Outlook with your FuseMail account. You will learn how to setup an IMAP account, and also how to move your emails and

More information

Installation Guide v3.0

Installation Guide v3.0 Installation Guide v3.0 Shepherd TimeClock 4465 W. Gandy Blvd. Suite 800 Tampa, FL 33611 Phone: 813-882-8292 Fax: 813-839-7829 http://www.shepherdtimeclock.com The information contained in this document

More information

Using Remote Web Workplace Version 1.01

Using Remote Web Workplace Version 1.01 Using Remote Web Workplace Version 1.01 Remote web workplace allows you to access your Windows XP desktop through Small Business Server 2003 from a web browser. 1. Connect to the Internet in your remote

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

Virtual Office Remote Installation Guide

Virtual Office Remote Installation Guide Virtual Office Remote Installation Guide Table of Contents VIRTUAL OFFICE REMOTE INSTALLATION GUIDE... 3 UNIVERSAL PRINTER CONFIGURATION INSTRUCTIONS... 12 CHANGING DEFAULT PRINTERS ON LOCAL SYSTEM...

More information

Field Description Example. IP address of your DNS server. It is used to resolve fully qualified domain names

Field Description Example. IP address of your DNS server. It is used to resolve fully qualified domain names DataCove DT Active Directory Authentication In Active Directory (AD) authentication mode, the server uses NTLM v2 and LDAP protocols to authenticate users residing in Active Directory. The login procedure

More information

How to register and use our Chat System

How to register and use our Chat System How to register and use our Chat System Why this document? We have a very good chat system and easy to use when you are set up, but getting registered and into the system can be a bit complicated. If you

More information

Your complete guide to installing the info@hand Self-Service Portal and estore.

Your complete guide to installing the info@hand Self-Service Portal and estore. Your complete guide to installing the info@hand Self-Service Portal and estore. Install the Portal & estore as shrink-wrapped software, or as add-ons to an existing Joomla! installation. Then configure

More information

Configuring Sponsor Authentication

Configuring Sponsor Authentication CHAPTER 4 Sponsors are the people who use Cisco NAC Guest Server to create guest accounts. Sponsor authentication authenticates sponsor users to the Sponsor interface of the Guest Server. There are five

More information

Implementing Moodle on a Windows High Availability Environment

Implementing Moodle on a Windows High Availability Environment Implementing Moodle on a Windows High Availability Environment Implementing Moodle 1.9 on 2 Microsoft Load Balanced Web Front End Server and a Microsoft SQL Server 2008 R2 Cluster environment Written by:

More information

Okta/Dropbox Active Directory Integration Guide

Okta/Dropbox Active Directory Integration Guide Okta/Dropbox Active Directory Integration Guide Okta Inc. 301 Brannan Street, 3rd Floor San Francisco CA, 94107 info@okta.com 1-888- 722-7871 1 Table of Contents 1 Okta Directory Integration Edition for

More information

webkpi SaaS ETL Connector Installation & Configuration Guide

webkpi SaaS ETL Connector Installation & Configuration Guide webkpi SaaS ETL Connector Installation & Configuration Guide SaaS ETL Version 2.5.0.12 Version 1.6 September 2013 webkpi SaaS ETL Connector Version 2.5.0.12 V 1.6 Page 1 Table of Contents Table of Contents

More information

APNS Certificate generating and installation

APNS Certificate generating and installation APNS Certificate generating and installation Quick Guide for generating and installing an Apple APNS Certificate Version: x.x MobiDM Quick Guide for APNS Certificate Page 1 Index 1. APPLE APNS CERTIFICATE...

More information

1. Installation Overview

1. Installation Overview Quick Install Guide 1. Installation Overview Thank you for selecting Bitdefender Business Solutions to protect your business. This document enables you to quickly get started with the installation of Bitdefender

More information

NSi Mobile Installation Guide. Version 6.2

NSi Mobile Installation Guide. Version 6.2 NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...

More information

MySQL quick start guide

MySQL quick start guide R E S E L L E R S U P P O R T www.fasthosts.co.uk MySQL quick start guide This guide will help you: Add a MySQL database to your reseller account. Find your database. Add additional users. Use the MySQL

More information

How to Use Remote Access Using Internet Explorer

How to Use Remote Access Using Internet Explorer Introduction Welcome to the Mount s Remote Access service. The following documentation is intended to assist first time or active users with connecting, authenticating and properly logging out of Remote

More information

Configuring the Active Directory Plug-in

Configuring the Active Directory Plug-in Wazza s QuickStart Configuring the Active Directory Plug-in Mac OS X 10.3.4 Background Using the Mac OS X 10.3.x built-in Active Directory (AD) plug-in, Mac users can authenticate with a Windows Active

More information

Getting started with PrestaShop 1.4

Getting started with PrestaShop 1.4 Getting started with PrestaShop 1.4 Whether you are a computer expert or a novice, the PrestaShop e- Commerce solution lets you take any business online. Since PrestaShop can be accessed from any computer

More information

InformationNOW System Preferences

InformationNOW System Preferences InformationNOW System Preferences About this Guide This Quick Reference Guide provides an overview of all options within the System Preferences menu except for Setup. For details regarding the Setup menu,

More information

Quick Start Guide v4.0 Client Outlook Connection

Quick Start Guide v4.0 Client Outlook Connection Quick Start Guide v4.0 Client Outlook Connection Contents Chapter 1 Outlook Anywhere - Outlook Anywhere 3 - Setting up Outlook Anywhere for PC 4 - Setting up Outlook for Mac 9 CLIENT OUTLOOK CONNECTION

More information

How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac?

How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac? Enterprise Computing & Service Management How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac? In order to connect remotely to a PC computer from your Mac, we recommend

More information

Remote Access: Internet Explorer

Remote Access: Internet Explorer Introduction: Welcome to the MSVU Remote Access service. The following documentation is intended to assist first time or active users with connecting, authenticating and properly logging out of Remote

More information

SINGLE SIGN-ON FOR MTWEB

SINGLE SIGN-ON FOR MTWEB SINGLE SIGN-ON FOR MTWEB FOR MASSTRANSIT ENTERPRISE WINDOWS SERVERS WITH DIRECTORY SERVICES INTEGRATION Group Logic, Inc. November 26, 2008 Version 1.1 CONTENTS Revision History...3 Feature Highlights...4

More information

CPE111 COMPUTER EXPLORATION

CPE111 COMPUTER EXPLORATION CPE111 COMPUTER EXPLORATION BUILDING A WEB SERVER ASSIGNMENT You will create your own web application on your local web server in your newly installed Ubuntu Desktop on Oracle VM VirtualBox. This is a

More information

Microsoft Entourage 2008 / Microsoft Exchange Server 2010. Installation and Configuration Instructions

Microsoft Entourage 2008 / Microsoft Exchange Server 2010. Installation and Configuration Instructions Microsoft Entourage 2008 / Microsoft Exchange Server 2010 Installation and Configuration Instructions Table of Contents How to connect Microsoft Entourage 2008 EWS to the Exchange Server... 3 Important

More information

How to remotely access your Virtual Desktop from outside the college using VMware View Client. How to guide

How to remotely access your Virtual Desktop from outside the college using VMware View Client. How to guide How to remotely access your Virtual Desktop from outside the college using VMware View Client How to guide Author: ICT Services Version: 1.0 Date: November 2015 Contents What is the VMware View Client?...

More information

Active Directory Integration

Active Directory Integration January 11, 2011 Author: Audience: SWAT Team Evaluator Product: Cymphonix Network Composer EX Series, XLi OS version 9 Active Directory Integration The following steps will guide you through the process

More information

Video Administration Backup and Restore Procedures

Video Administration Backup and Restore Procedures CHAPTER 12 Video Administration Backup and Restore Procedures This chapter provides procedures for backing up and restoring the Video Administration database and configuration files. See the following

More information

Installation Guide. Research Computing Team V1.9 RESTRICTED

Installation Guide. Research Computing Team V1.9 RESTRICTED Installation Guide Research Computing Team V1.9 RESTRICTED Document History This document relates to the BEAR DataShare service which is based on the product Power Folder, version 10.3.232 ( some screenshots

More information

Computer Science and Engineering MacOS Cisco VPN Client Installation and Setup Guide

Computer Science and Engineering MacOS Cisco VPN Client Installation and Setup Guide Computer Science and Engineering MacOS Cisco VPN Client Installation and Setup Guide Contents Installation: For users who have no prior Cisco VPN Client Installed... 2 Profile Import:... 4 Usage:... 4

More information

PHP+MYSQL, EASYPHP INSTALLATION GUIDE

PHP+MYSQL, EASYPHP INSTALLATION GUIDE PHP+MYSQL, EASYPHP INSTALLATION GUIDE EasyPhp is a tool to install and configure an Apache server along with a database manager, MySQL. Download the latest version from http://www.easyphp.org/ as seen

More information

MassTransit 6.0 Enterprise Web Configuration for Macintosh OS 10.5 Server

MassTransit 6.0 Enterprise Web Configuration for Macintosh OS 10.5 Server MassTransit 6.0 Enterprise Web Configuration for Macintosh OS 10.5 Server November 6, 2008 Group Logic, Inc. 1100 North Glebe Road, Suite 800 Arlington, VA 22201 Phone: 703-528-1555 Fax: 703-528-3296 E-mail:

More information

Contents. 1. Infrastructure

Contents. 1. Infrastructure 1. Infrastructure 2. Configuration Contents a. Join the Web Server to the Domain Controller b. Install PHP, mysql, apache c. Install and configure wordpress and virtual host d. Install and configure moodle

More information

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab Description The Symantec App Center platform continues to expand it s offering with new enhanced support for native agent based device management

More information

QUANTIFY INSTALLATION GUIDE

QUANTIFY INSTALLATION GUIDE QUANTIFY INSTALLATION GUIDE Thank you for putting your trust in Avontus! This guide reviews the process of installing Quantify software. For Quantify system requirement information, please refer to the

More information

XMPP Instant Messaging and Active Directory

XMPP Instant Messaging and Active Directory XMPP Instant Messaging and Active Directory Quick setup of Isode's XMPP Server, M-Link, using Microsoft's Active Directory for user account provisioning Isode Objectives This document is intended for those

More information

Lync Online Deployment Guide. Version 1.0

Lync Online Deployment Guide. Version 1.0 Date 28/07/2014 Table of Contents 1. Provisioning Lync Online... 1 1.1 Operating System Requirements... 1 1.2 Browser Requirements Administrative Centre... 1 2. Obtaining your login Credentials & Logging

More information