Contents: 1. Preparation/download files 2. Apache HTTPD Web Server MySQL PHP PHPMyAdmin Ruby On Rails 1.8.

Size: px
Start display at page:

Download "Contents: 1. Preparation/download files 2. Apache HTTPD Web Server 2.2.3 3. MySQL 5.0.27 4. PHP 5.2.0 5. PHPMyAdmin 2.9.1.1 6. Ruby On Rails 1.8."

Transcription

1 Installation guide for Apache webserver, MySQL, PHP 5, PHPMyAdmin en Ruby On Rails by: Wietse Veenstra - last update: January 3rd, 2007 Contents: 1. Preparation/download files 2. Apache HTTPD Web Server MySQL PHP PHPMyAdmin Ruby On Rails

2 1. Preparation/download files Create a new folder on your desktop and give it the name 'Server'. First we are going to download al the essential files into this folder from the internet. Go to the links mentioned below and download the files to the new folder: Applications: Apache HTTP Webserver (v2.2.3): homepage: downloadpage: filename: apache_2.2.3-win32-x86-no_ssl.msi [4,327kb] MySQL (v5.0.27): homepage: downloadpage: filename: Windows (x86) -> mysql win32.zip [41,260kb] PHP (v5.2.0): homepage: downloadpage: filename: php win32.zip [9,433kb] PHPMyAdmin (v ): homepage: downloadpage: filename: phpmyadmin english.zip [1,167kb] Ruby On Rails (v ): homepage: downloadpage: filename: ruby exe [26,997kb] Extra's: Ruby On Rails - Apache configuration files: downloadpage: filename: mod_fcgid-2.0-w32.zip [22kb] Visual C Redistributable Package: downloadpage: filename: vcredist_x86.exe [2,624kb] References: PHP CHM guide: downloadpage: filename: php_manual_nl.chm [6,916kb] MySQL CHM guide: downloadpage: filename: manual.chm [3,627kb] Also create a folder where your projects will be saved, for example c:\webroot\.

3 Apache HTTP Web Server WARNING FOR SKYPE USERS!: Skype needs to be shut down temporarily before installing Apache because it will conflict with Apache during it s installation. If Skype keeps running, the next error will occur during the installation of Apache: make_sock: could not bind to address :80 no listening sockets available, Shutting down.". This will result in a non-startable Apache after installation. After the installation of Apache, Skype can be run normally again. First we are going to install Apache. To do this, you need to open the file named'apache_2.2.3-win32-x86- no_ssl.msi' in the 'Server' folder. The installation of Apache is fairly simple. You can click on the 'next' button until you will see this screen: After inserting the correct data (this can be anything), you click next again. Choose for the 'Typical' setup type. The standard Destination Folder in program files is a good location to install so click the next button once again to start the installation. Your firewall possibly gives a security warning when Apache tries to connect. Grant Apache access. Click on the finish button when the installation has finished. To test if the installation went correctly you can open a browser window (e.g.: Internet Explorer, Firefox, Opera, etc). Typ ' (without quotes) in the address bar. With a successful installation you should see It Works on your screen now. The next thing you need to do is to make sure that Apache will know where you store your project files. To achieve you have to make some adjustments in the Apache configuration file called httpd.conf : go to Start > Programs > Apache HTTP Server > Configure Apache Server > edit the Apache httpd.conf configuration file. Now the config file will be opened with Notepad. Find this line DocumentRoot C:/Program Files/Apache Group/Apache2/htdocs and change this into DocumentRoot C:/webroot (notice the forward-slash instead of the backslash!). Also change this line <Directory "C:/Program Files/Apache Group/Apache2/htdocs"> into C:/webroot. Finally you have to change this line DirectoryIndex index.html into DirectoryIndex index.html index.html.var index.php. The only thing that needs to be done before Apache is installed completely is a server restart. You do this by going to Start > Programs > Apache HTTP Server > Control Apache Server > and choosing Restart.

4 MySQL Now it s time to install MySQL. Unzip the file called mysql win32.zip into the Server folder. The file Setup.exe has appeared. Open this file. The installation will start and you will be shown a welcome screen. Click next, choose the typical installation method and click on the next button again. Click install to start the installation. After the installation you will see a screen where you can register or login on the MySQL.com website. Choose Skip Sign-Up and click next. After this the setup wizard is finished installing MySQL. Click finish. Now you arrive at the Configuration Wizard. Click next and choose the Standard Configuration, as this is a new MySQL installation. Users who are upgrading a previous installation of MySQL have to choose the Detailed Configuration. In the next screen you have to choose Install As Windows Service. Check the checkboxes Launch the MySQL Server automatically and Include Bin Directory in Windows PATH (see screenshot below). After clicking next you will be asked to insert a root password twice. Type your password twice and click on next again. Then click on execute to start the configuration of MySQL and choose finish after the configuration to close the wizard. To check if everything went as planned go to Start > MySQL > MySQL Server 5.0 > MySQL Command Line Client. A DOS screen appears. Type your root password and press the enter key. If the installation went as planned, you will see this screen:

5 PHP For the installation of PHP you need to unzip the file php win32.zip into the folder C:\php. Open this folder and copy the file php.ini.dist. Paste the file directly into the same folder and rename it to php.ini. Open the file with Notepad (or another text editor of your choice). Change the line short_open_tag = On to short_open_tag = Off. Also change the line error_reporting = E_ALL & ~E_NOTICE to error_reporting = E_ALL. Then change the line extension_dir = "./" to extension_dir = "c:\php\ext\". After changing these lines you have to find the extensions part and delete the ; before the lines extension=php_mbstring.dll and extension=php_mysql.dll. This will ensure that PHP recognizes MySQL. Now you will have to add the following lines at the bottom of the httpd.conf Apache configuration file: httpd.conf <Directory "c:/php/"> AllowOverride None Options None Order allow,deny Allow from all </Directory> ScriptAlias /php/ c:/php/ AddType application/x-httpd-php.php Action application/x-httpd-php /php/php-cgi.exe SetEnv PHPRC C:/php Finally you have to add PHP to the Windows startup configuration. This can be done by opening Start > Configuration Screen > System. On this page, go to the advanced tab. Click on the button called Environment variables and select the variable Path under System variables. Choose edit and insert ;C:\php (without quotes) at the end of this line. Click ok and choose New. The name of the new variable is PHPRC and the value C:\php. Now click ok until all screens are closed. You need to restart your computer now. In order to test whether the installation of PHP went successfully, you have to create the next file in the webroot folder you created earlier with the following content: phpinfo.php <?php phpinfo();?>

6 When you browse to localhost in your favorite browser and open the file you just created, you will see a screen as shown below: HINT: Print the information on this page (multiple pages). When you run into an error when you are working on your PHP files you can use this as a reference to check the configuration of your PHP-installation. It is advisable to delete this file after testing because it contains useful information about your configuration for hackers.

7 PHPMyAdmin The next victim is PHPMyAdmin. Unzip the phpmyadmin english.zip file into your webroot folder. Browse to your webroot folder and rename the folder phpmyadmin english to phpmyadmin Now open this folder and copy the file config.sample.inc.php. Directly paste the file back into the folder and rename it to config.inc.php. Open this file and change the line $cfg['servers'][$i]['auth_type'] = 'cookie'; to $cfg['servers'][$i]['auth_type'] = 'config';. Now delete the following lines: config.inc.php $cfg['servers'][$i]['controluser'] = 'pmausr'; $cfg['servers'][$i]['controlpass'] = 'pmapass'; Finally add these lines under the $i++; part: config.inc.php $cfg['servers'][$i]['user'] $cfg['servers'][$i]['password'] = 'root'; = 'typ hier uw wachtwoord voor mysql'; Save the file. You are now ready to use PHPMyAdmin via your localhost.

8 Ruby On Rails The installation of Ruby On Rails is the easiest one during this guide. Open the file ruby exe which is located in the server folder. And now you can keep clicking on the next button until the installation is finished. Now it s time to put Ruby on it s Rails. To do this you need to open a command screen via Start > Run and type cmd (without quotes). In the command window, run the next line: gem install rails --remote --include-dependencies After a while the installation of Ruby On Rails is finished. At this time it s still needed to start the WEBrick server of Ruby On Rails manually before you can test your Ruby projects. Next we are going to install a plugin for Apache to resolve this. Apache will then open all your Ruby projects automatically. Unzip the mod_fcgid-2.0-w32.zip into the server folder. There will be 3 new files in this folder now. First, copy the mod_fcgid.so to the C:\Program Files\Apache Software Foundation\Apache2.2\modules folder. Next copy the second file, named httpd.exe.manifest into the C:\Program Files\Apache Software Foundation\Apache2.2\bin folder. Now run the vcredist_x86.exe from your server folder to install the Microsoft Visual C++ plugin as this is needed. Finally add the line LoadModule fcgid_module modules/mod_fcgid.so to your Apache configuration file httpd.conf. Restart your Apache server and you are ready to start working on your projects!

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

MassTransit 6.0 Enterprise Web Configuration For Windows

MassTransit 6.0 Enterprise Web Configuration For Windows MassTransit 6.0 Enterprise Web Configuration For Windows November 7, 2008 Group Logic, Inc. 1100 North Glebe Road, Suite 800 Arlington, VA 22201 Phone: 703-528-1555 Fax: 703-528-3296 E-mail: info@grouplogic.com

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

Install & Configure Apache with PHP, JSP and MySQL on Windows XP Pro

Install & Configure Apache with PHP, JSP and MySQL on Windows XP Pro Install & Configure Apache with PHP, JSP and MySQL on Windows XP Pro Jeff Lundberg jeff@jefflundberg.com This is a quick guide to install and configure the Apache web-server with PHP and JSP support on

More information

How To Install Amyshelf On Windows 2000 Or Later

How To Install Amyshelf On Windows 2000 Or Later Contents I Table of Contents Part I Document Overview 2 Part II Document Details 3 Part III Setup 4 1 Download & Installation... 4 2 Configure MySQL... Server 6 Windows XP... Firewall Settings 13 3 Additional

More information

What will be supplied with chemoventory package?

What will be supplied with chemoventory package? Requirements... 1 What will be supplied with chemoventory package?... 1 Files structure of /chemoventory... 2 Download PHP, MySQL and Zend optimizer programs... 3 Apache Installation... 3 Apache installation

More information

How to Install MediaWiki on Windows Server 2003

How to Install MediaWiki on Windows Server 2003 How to Install MediaWiki on Windows Server 2003 Larry Kahm This article describes how you can install MediaWiki on Windows Server 2003 so that you can provide a wiki for your intranet users. According

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

SIMIAN systems. Setting up a Sitellite development environment on Windows. Sitellite Content Management System

SIMIAN systems. Setting up a Sitellite development environment on Windows. Sitellite Content Management System Setting up a Sitellite development environment on Windows Sitellite Content Management System Introduction For live deployment, it is strongly recommended that Sitellite be installed on a Unix-based operating

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

Installing SQL-Ledger on Windows

Installing SQL-Ledger on Windows Installing SQL-Ledger on Windows Requirements Windows 2000, Windows XP, Windows Server 2000 or Windows Server 2003 WinZip Knowledge of simple DOS commands, i.e. CD, DIR, MKDIR, COPY, REN Steps Installing

More information

Redatam+SP REtrieval of DATa for Small Areas by Microcomputer

Redatam+SP REtrieval of DATa for Small Areas by Microcomputer Redatam+SP REtrieval of DATa for Small Areas by Microcomputer Redatam+ SP WebServer (R+SP WebServer) Installation and Configuration for the Windows Operating System REDATAM+SP is a software system developed

More information

Getting the software The Apache webserver can be downloaded free from the Apache website : http://www.apache.org/.

Getting the software The Apache webserver can be downloaded free from the Apache website : http://www.apache.org/. Basic installation of APACHE in Windows This chapter deals with the installation of Apache to be used for ABCD in a Windows environment. At least Windows NT, Windows 2000 or later versions are supposed

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

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

HOW TO SETUP AN APACHE WEB SERVER AND INTEGRATE COLDFUSION

HOW TO SETUP AN APACHE WEB SERVER AND INTEGRATE COLDFUSION HOW TO SETUP AN APACHE WEB SERVER AND INTEGRATE COLDFUSION Draft version 1.0 July 15 th 2010 Software XAMPP is an open source package designed to take almost all the work out of setting up and integrating

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

INSTALLING MÜSE UPDATES FOR ISTAN

INSTALLING MÜSE UPDATES FOR ISTAN INSTALLING MÜSE UPDATES FOR ISTAN System updates are available periodically and can be downloaded using any computer with an Internet connection. CAE Healthcare Instructor Workstations should NOT be connected

More information

Zanibal Plug-in For Microsoft Outlook Installation & User Guide Version 1.1

Zanibal Plug-in For Microsoft Outlook Installation & User Guide Version 1.1 Zanibal Plug-in For Microsoft Outlook Installation & User Guide Version 1.1 Zanibal LLC Phone: +1-408-887-0480, +234-1-813-1744 Email: support@zanibal.com www.zanibal.com Copyright 2012, Zanibal LLC. All

More information

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

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

More information

OpenPro ERP Software Installation Guide REDHAT LINUX

OpenPro ERP Software Installation Guide REDHAT LINUX OpenPro ERP Software Installation Guide REDHAT LINUX 10061 Talbert Ave Suite 228 Fountain Valley, CA 92708 USA Phone 714-378-4600 Fax 714-964-1491 www.openpro.com infoop@openpro.com OpenPro Installation

More information

SSO Plugin. J System Solutions. Upgrading SSO Plugin 3x to 4x - BMC AR System & Mid Tier. http://www.javasystemsolutions.com

SSO Plugin. J System Solutions. Upgrading SSO Plugin 3x to 4x - BMC AR System & Mid Tier. http://www.javasystemsolutions.com SSO Plugin Upgrading SSO Plugin 3x to 4x - BMC AR System & Mid Tier J System Solutions JSS SSO Plugin Upgrading 3x to 4x Introduction... 3 [Prerequisite] Generate a new license... 4 [Prerequisite] Download

More information

We begin with a number of definitions, and follow through to the conclusion of the installation.

We begin with a number of definitions, and follow through to the conclusion of the installation. Owl-Hosted Server Version 0.9x HOW TO Set up Owl using cpanel Introduction Much of the documentation for the installation of Owl Intranet Knowledgebase assumes a knowledge of servers, and that the installation

More information

Installing Oracle 12c Enterprise on Windows 7 64-Bit

Installing Oracle 12c Enterprise on Windows 7 64-Bit JTHOMAS ENTERPRISES LLC Installing Oracle 12c Enterprise on Windows 7 64-Bit DOLOR SET AMET Overview This guide will step you through the process on installing a desktop-class Oracle Database Enterprises

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

Installation Guidelines (MySQL database & Archivists Toolkit client)

Installation Guidelines (MySQL database & Archivists Toolkit client) Installation Guidelines (MySQL database & Archivists Toolkit client) Understanding the Toolkit Architecture The Archivists Toolkit requires both a client and database to function. The client is installed

More information

WA2256 Responsive Mobile Web Development with HTML5, CSS3, JavaScript, and jquery Mobile. Classroom Setup Guide. Web Age Solutions Inc.

WA2256 Responsive Mobile Web Development with HTML5, CSS3, JavaScript, and jquery Mobile. Classroom Setup Guide. Web Age Solutions Inc. WA2256 Responsive Mobile Web Development with HTML5, CSS3, JavaScript, and jquery Mobile Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum

More information

MySQL Quick Start Guide

MySQL Quick Start Guide Quick Start Guide MySQL Quick Start Guide SQL databases provide many benefits to the web designer, allowing you to dynamically update your web pages, collect and maintain customer data and allowing customers

More information

Install and configure Apache, MySQL, PHP on OSX 10.8 Mountain Lion

Install and configure Apache, MySQL, PHP on OSX 10.8 Mountain Lion 1 de 9 12/01/13 14:07 Install and configure Apache, MySQL, PHP and phpmyadmin on OSX 10.8 Mountain Lion Get your Local Web Development Server Purring on all Fours With the new cat out of the bag, getting

More information

RaidenFTPD Log Analyser Web Edition

RaidenFTPD Log Analyser Web Edition RaidenFTPD Log Analyser Web Edition Installation and Use Guide for IIS7/PHP5 1 Table of Contents 1. Required components... 3 2. Installing IIS7 on windows7/vista/2008... 3 Install IIS Server... 3 Test

More information

CEFNS Web Hosting a Guide for CS212

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

More information

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

MySQL Quick Start Guide

MySQL Quick Start Guide Fasthosts Customer Support MySQL Quick Start Guide This guide will help you: Add a MySQL database to your account. Find your database. Add additional users. Use the MySQL command-line tools through ssh.

More information

Online Backup Client User Manual Mac OS

Online Backup Client User Manual Mac OS Online Backup Client User Manual Mac OS 1. Product Information Product: Online Backup Client for Mac OS X Version: 4.1.7 1.1 System Requirements Operating System Mac OS X Leopard (10.5.0 and higher) (PPC

More information

Online Backup Client User Manual Mac OS

Online Backup Client User Manual Mac OS Online Backup Client User Manual Mac OS 1. Product Information Product: Online Backup Client for Mac OS X Version: 4.1.7 1.1 System Requirements Operating System Mac OS X Leopard (10.5.0 and higher) (PPC

More information

Greenstone Documentation

Greenstone Documentation Greenstone Documentation Web library and Remote Collection Building with GLI Client Web Library. This enables any computer with an existing webserver to serve pre-built Greenstone collections. As with

More information

FlexSim LAN License Server

FlexSim LAN License Server FlexSim LAN License Server Installation Instructions Rev. 20150318 Table of Contents Introduction... 2 Using lmtools... 2 1. Download the installation files... 3 2. Install the license server... 4 3. Connecting

More information

Setting up an Apache Web Server for Greenstone 2 Walkthrough

Setting up an Apache Web Server for Greenstone 2 Walkthrough Setting up an Apache Web Server for Greenstone 2 Walkthrough From GreenstoneWiki Setting up an Apache web server to work with Greenstone 2: [edit] #Installing the Apache web server on Linux and MacOS (Leopard)

More information

Matlab Web Server Installation and Configuration Guide

Matlab Web Server Installation and Configuration Guide We reserve all rights in this document and in the information contained therein. Reproduction,use or disclosure to third parties without express authority is strictly forbidden. ABB Process Industries;

More information

JAVS Scheduled Publishing. Installation/Configuration... 4 Manual Operation... 6 Automating Scheduled Publishing... 7 Windows XP... 7 Windows 7...

JAVS Scheduled Publishing. Installation/Configuration... 4 Manual Operation... 6 Automating Scheduled Publishing... 7 Windows XP... 7 Windows 7... 1 2 Copyright JAVS 1981-2010 Contents Scheduled Publishing... 4 Installation/Configuration... 4 Manual Operation... 6 Automating Scheduled Publishing... 7 Windows XP... 7 Windows 7... 12 Copyright JAVS

More information

Installing buzztouch Self Hosted

Installing buzztouch Self Hosted Installing buzztouch Self Hosted This step-by-step document assumes you have downloaded the buzztouch self hosted software and operate your own website powered by Linux, Apache, MySQL and PHP (LAMP Stack).

More information

Web Site Content Management Server. Installation Guide Version 4.1 Build 0

Web Site Content Management Server. Installation Guide Version 4.1 Build 0 Web Site Content Management Server Installation Guide Version 4.1 Build 0 livesite: Web Site Content Management Server No parts of this work may be reproduced in any form or by any means - graphic, electronic,

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

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

OpenEyes - Windows Server Setup. OpenEyes - Windows Server Setup

OpenEyes - Windows Server Setup. OpenEyes - Windows Server Setup OpenEyes - Windows Server Setup Editors: G W Aylward Version: 0.9: Date issued: 4 October 2010 1 Target Audience General Interest Healthcare managers Ophthalmologists Developers Amendment Record Issue

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

Setting up FileMaker 10 Server

Setting up FileMaker 10 Server Setting up FileMaker 10 Server Note : If your current live Database folder is located in the default database folder ( C:\Program Files\FileMaker\FileMaker Server\Data\Databases ), move\copy this folder

More information

Installing Booked scheduler on CentOS 6.5

Installing Booked scheduler on CentOS 6.5 Installing Booked scheduler on CentOS 6.5 This guide will assume that you already have CentOS 6.x installed on your computer, I did a plain vanilla Desktop install into a Virtual Box VM for this test,

More information

Browser Client 2.0 Admin Guide

Browser Client 2.0 Admin Guide Browser Client is a web-based application that allows users to point their browser at a URL and view live video from a set of Intellex units. Browser Client 2.0 is compatible with Intellex 3.2 software.

More information

Online Backup Client User Manual

Online Backup Client User Manual For Mac OS X Software version 4.1.7 Version 2.2 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by other means.

More information

TechComplete Test Productivity Pack (TPP) Backup Process and Data Restoration

TechComplete Test Productivity Pack (TPP) Backup Process and Data Restoration Introduction The TPP backup feature backs up all TPP data folders on to a storage device which can be used to recover data in case of problems with the TPP server. TPP data folders include TPP server data,

More information

VMware Software Manager - Download Service User's Guide

VMware Software Manager - Download Service User's Guide VMware Software Manager - Download Service User's Guide VMware Software Manager 1.1 This document supports the version of each product listed and supports all subsequent versions until the document is

More information

Omnistar Recruiter Install User Guide (Codelock)

Omnistar Recruiter Install User Guide (Codelock) Omnistar Recruiter Install User Guide (Codelock) I Omnistar Recruiter Install User Guide (Codelock) Table of Contents Foreword 0 Part I HOME 2 Part II Pre-installation 4 Part III Installation 7 Part IV

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

INSTALLING MOODLE 2.5 ON A MICROSOFT PLATFORM

INSTALLING MOODLE 2.5 ON A MICROSOFT PLATFORM INSTALLING MOODLE 2.5 ON A MICROSOFT PLATFORM Install Moodle 2.5 on Server 2012 R2 with SQL 2012 Ryan Mangan SysTech IT Solutions www.systechitsolutions.co.uk Contents Introduction... 2 Configuring basic

More information

Version 1.6. MDweb installation and configuration (scripts databases) Windows Platform. 1.3 Authors: Jean Christophe Desconnets (jcd@teledetection.

Version 1.6. MDweb installation and configuration (scripts databases) Windows Platform. 1.3 Authors: Jean Christophe Desconnets (jcd@teledetection. Version 1.6 MDweb installation and configuration (scripts databases) Windows Platform Version Comments 1 Authors : Jean Christophe Desconnets (jcd@teledetection.fr) Translation : Kim Agrawal (kim@auromail.net)

More information

Local Caching Servers (LCS): User Manual

Local Caching Servers (LCS): User Manual Local Caching Servers (LCS): User Manual Table of Contents Local Caching Servers... 1 Supported Browsers... 1 Getting Help... 1 System Requirements... 2 Macintosh... 2 Windows... 2 Linux... 2 Downloading

More information

MAMP 3 User Guide! March 2014 (c) appsolute GmbH!

MAMP 3 User Guide! March 2014 (c) appsolute GmbH! MAMP 3 User Guide March 2014 (c) appsolute GmbH 1 I. Installation 3 1. Installation requirements 3 2. Installing and upgrading 3 3. Uninstall 3 II. First Steps 4 III. Preferences 5 Start/Stop 5 2. Ports

More information

Sugar Open Source Installation Guide. Version 4.5.1

Sugar Open Source Installation Guide. Version 4.5.1 Sugar Open Source Installation Guide Version 4.5.1 Sugar Open Source Installation Guide Version 4.5.1, 2007 Copyright 2004-2007 SugarCRM Inc. www.sugarcrm.com This document is subject to change without

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

GUARD1 PLUS SE Administrator's Manual

GUARD1 PLUS SE Administrator's Manual GUARD1 PLUS SE Administrator's Manual Version 4.4 30700 Bainbridge Road Solon, Ohio 44139 Phone 216-595-0890 Fax 216-595-0991 info@guard1.com www.guard1.com i 2010 TimeKeeping Systems, Inc. GUARD1 PLUS

More information

How To Set Up Dataprotect

How To Set Up Dataprotect How To Set Up Dataprotect This document will show you how to install and configure your computer for a Typical installation. If you have questions about configuring a Custom installation please contact

More information

Installing OptiRain Open on Macintosh OS X 10.6 (Snow Leopard)

Installing OptiRain Open on Macintosh OS X 10.6 (Snow Leopard) QUICKSMART Installing OptiRain Open on Macintosh OS X 10.6 (Snow Leopard) QuickSmart Development P.O. Box 3689 Santa Clara, CA 95055 408-777-0944 www.quicksmart.com OptiRain Open provides local scheduling

More information

Installing and Configuring DB2 10, WebSphere Application Server v8 & Maximo Asset Management

Installing and Configuring DB2 10, WebSphere Application Server v8 & Maximo Asset Management IBM Tivoli Software Maximo Asset Management Installing and Configuring DB2 10, WebSphere Application Server v8 & Maximo Asset Management Document version 1.0 Rick McGovern Staff Software Engineer IBM Maximo

More information

Online Backup Client User Manual Linux

Online Backup Client User Manual Linux Online Backup Client User Manual Linux 1. Product Information Product: Online Backup Client for Linux Version: 4.1.7 1.1 System Requirements Operating System Linux (RedHat, SuSE, Debian and Debian based

More information

1. Product Information

1. Product Information ORIXCLOUD BACKUP CLIENT USER MANUAL LINUX 1. Product Information Product: Orixcloud Backup Client for Linux Version: 4.1.7 1.1 System Requirements Linux (RedHat, SuSE, Debian and Debian based systems such

More information

Installation Guide. Understanding Faith 2014 Intranet. Understanding Faith

Installation Guide. Understanding Faith 2014 Intranet. Understanding Faith Installation Guide Understanding Faith 2014 Intranet Understanding Faith ABSTRACT This software manual documents Understanding Faith, the comprehensive and interactive multimedia resource for religious

More information

PassMark Software BurnInTest Management Console. Quick start guide

PassMark Software BurnInTest Management Console. Quick start guide PassMark Software BurnInTest Management Console Quick start guide Edition: 1.1 Date: 16 August 2013 BurnInTest Version: 7.1.1011+ BurnInTest is a trademark of PassMark software Overview For BurnInTest

More information

Setting Up SSL on IIS6 for MEGA Advisor

Setting Up SSL on IIS6 for MEGA Advisor Setting Up SSL on IIS6 for MEGA Advisor Revised: July 5, 2012 Created: February 1, 2008 Author: Melinda BODROGI CONTENTS Contents... 2 Principle... 3 Requirements... 4 Install the certification authority

More information

Dynamic Web-Based Applications Using SAS Software

Dynamic Web-Based Applications Using SAS Software Dynamic Web-Based Applications Using SAS Software Prepared by In order to execute the SAS/INTRNET software you need a Web Server. There are numerous Web Servers on the market today. Microsoft IIS/Personal

More information

Interact for Microsoft Office

Interact for Microsoft Office Interact for Microsoft Office Installation and Setup Guide Perceptive Content Version: 7.0.x Written by: Product Knowledge, R&D Date: October 2014 2014 Perceptive Software. All rights reserved Perceptive

More information

WorldShip PRE-INSTALLATION INSTRUCTIONS: Step. Window (if available) Upgrade on a Single or Workgroup Workstation

WorldShip PRE-INSTALLATION INSTRUCTIONS: Step. Window (if available) Upgrade on a Single or Workgroup Workstation PRE-INSTALLATION INSTRUCTIONS: This document discusses using the WorldShip DVD to upgrade WorldShip. You can also install WorldShip from the Web. Go to the following Web page and click the appropriate

More information

Project management integrated into Outlook

Project management integrated into Outlook y Project management integrated into Outlook InLoox PM 7.x Help for the configuration for MySQL-Server An InLoox Whitepaper Published: October 2011 Copyright: InLoox GmbH 2011 You find up-to-date information

More information

Gorilla CRM System Installation Instructions

Gorilla CRM System Installation Instructions Gorilla CRM System Installation Instructions Preparation Your office environment will determine the type of Gorilla installation needed on each workstation. Answer the following questions before proceeding

More information

Installation Instruction STATISTICA Enterprise Small Business

Installation Instruction STATISTICA Enterprise Small Business Installation Instruction STATISTICA Enterprise Small Business Notes: ❶ The installation of STATISTICA Enterprise Small Business entails two parts: a) a server installation, and b) workstation installations

More information

VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007

VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007 VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007 Rocksalt International Pty Ltd support@vpasp.com www.vpasp.com Table of Contents 1 INTRODUCTION... 3 2 FEATURES... 4 3 WHAT

More information

Installing a Browser Security Certificate for PowerChute Business Edition Agent

Installing a Browser Security Certificate for PowerChute Business Edition Agent Installing a Browser Security Certificate for PowerChute Business Edition Agent The Agent component of PowerChute Business Edition has a "self-signed" security certificate. This means that when you access

More information

SSL VPN Setup for Windows

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

More information

Working With Your FTP Site

Working With Your FTP Site Working With Your FTP Site Welcome to your FTP Site! The UnlimitedFTP (UFTP) software will allow you to run from any web page using Netscape, Internet Explorer, Opera, Mozilla or Safari browsers. It can

More information

How to install and use the File Sharing Outlook Plugin

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

More information

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

DocAve Upgrade Guide. From Version 4.1 to 4.5

DocAve Upgrade Guide. From Version 4.1 to 4.5 DocAve Upgrade Guide From Version 4.1 to 4.5 About This Guide This guide is intended for those who wish to update their current version of DocAve 4.1 to the latest DocAve 4.5. It is divided into two sections:

More information

StarWind iscsi SAN Software: Installing StarWind on Windows Server 2008 R2 Server Core

StarWind iscsi SAN Software: Installing StarWind on Windows Server 2008 R2 Server Core StarWind iscsi SAN Software: Installing StarWind on Windows Server 2008 R2 Server Core www.starwindsoftware.com Copyright 2008-2011. All rights reserved. COPYRIGHT Copyright 2008-2011. All rights reserved.

More information

Upgrading MySQL from 32-bit to 64-bit

Upgrading MySQL from 32-bit to 64-bit Upgrading MySQL from 32-bit to 64-bit UPGRADING MYSQL FROM 32-BIT TO 64-BIT... 1 Overview... 1 Upgrading MySQL from 32-bit to 64-bit... 1 Document Revision History... 21 Overview This document will walk

More information

Immotec Systems, Inc. SQL Server 2005 Installation Document

Immotec Systems, Inc. SQL Server 2005 Installation Document SQL Server Installation Guide 1. From the Visor 360 installation CD\USB Key, open the Access folder and install the Access Database Engine. 2. Open Visor 360 V2.0 folder and double click on Setup. Visor

More information

Installation and Deployment

Installation and Deployment Installation and Deployment Help Documentation This document was auto-created from web content and is subject to change at any time. Copyright (c) 2016 SmarterTools Inc. Installation and Deployment SmarterStats

More information

MINIMUM INSTALLATION REQUIREMENTS Processor: RAM: Hard disk: Operating system: Others: Pentium 200 MHz. 64 MB. 80 MB free space. One of the following: Red Hat (version 7.0, 7.1, 7.2, 7.3, 8.0, 9 or Enterprise

More information

STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS

STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS Notes 1. The installation of STATISTICA Enterprise Small Business entails two parts: a) a server installation, and b)

More information

Content Management System

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

More information

Server & Workstation Installation of Client Profiles for Windows (WAN Edition)

Server & Workstation Installation of Client Profiles for Windows (WAN Edition) C ase Manag e m e n t by C l i e n t P rofiles Server & Workstation Installation of Client Profiles for Windows (WAN Edition) T E C H N O L O G Y F O R T H E B U S I N E S S O F L A W Important Note on

More information

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream User Manual Onsight Management Suite Version 5.1 Another Innovation by Librestream Doc #: 400075-06 May 2012 Information in this document is subject to change without notice. Reproduction in any manner

More information

STATISTICA VERSION 10 STATISTICA ENTERPRISE SERVER INSTALLATION INSTRUCTIONS

STATISTICA VERSION 10 STATISTICA ENTERPRISE SERVER INSTALLATION INSTRUCTIONS Notes: STATISTICA VERSION 10 STATISTICA ENTERPRISE SERVER INSTALLATION INSTRUCTIONS 1. The installation of the STATISTICA Enterprise Server entails two parts: a) a server installation, and b) workstation

More information

Indian Standards on DVDs. Installation Manual Version 1.0. Prepared by Everonn Education Ltd

Indian Standards on DVDs. Installation Manual Version 1.0. Prepared by Everonn Education Ltd Indian Standards on DVDs Installation Manual Version 1.0 Prepared by Everonn Education Ltd Table of Contents 1. Introduction... 3 1.1 Document Objective... 3 1.2 Who will read this manual... 3 2. Planning

More information

Hands-On Workshops. Running SAS Applications on the Web

Hands-On Workshops. Running SAS Applications on the Web Running SAS Applications on the Web Destiny Corporation, Wethersfield, Ct ABSTRACT This paper will focus on the steps required to create Web-enabled applications that users can execute in an intranet/internet

More information

Configuring Internet Explorer for Voyager on Client Computers

Configuring Internet Explorer for Voyager on Client Computers 1 Configuring Internet Explorer for Voyager on Client Computers You must configure Microsoft Internet Explorer settings on each of your client computers so that your users can properly access and operate

More information

Sitecore Ecommerce Enterprise Edition Installation Guide Installation guide for administrators and developers

Sitecore Ecommerce Enterprise Edition Installation Guide Installation guide for administrators and developers Installation guide for administrators and developers Table of Contents Chapter 1 Introduction... 2 1.1 Preparing to Install Sitecore Ecommerce Enterprise Edition... 2 1.2 Required Installation Components...

More information

Installing Drupal 8 on Windows 7 with XAMPP. I am trying to install Drupal 8 on my Windows machine as a development system.

Installing Drupal 8 on Windows 7 with XAMPP. I am trying to install Drupal 8 on my Windows machine as a development system. Installing Drupal 8 on Windows 7 with XAMPP I am trying to install Drupal 8 on my Windows machine as a development system. From reading up the documentation on the Drupal Community Documentation, I learnt

More information

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

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

More information

The only skill required really is to locate and edit text-files with a text-editor like Notepad.

The only skill required really is to locate and edit text-files with a text-editor like Notepad. Installation of ABCD in WAMP Introduction This guide will illustrate and give instructions on how to install the ABCD software based on a WAMP istallation. It is perfectly possible to integrate both types

More information

Lotus Notes 6.x Client Installation Guide for Windows. Information Technology Services. CSULB

Lotus Notes 6.x Client Installation Guide for Windows. Information Technology Services. CSULB The goal of this document This document was created by the Information Technology Services department to assist the Lotus Notes Coordinators in the successful installation of Lotus Notes release 6 (R6)

More information