Setting up Omeka on IU s Webserve

Size: px
Start display at page:

Download "Setting up Omeka on IU s Webserve"

Transcription

1 Setting up Omeka on IU s Webserve Request Webserve Account Consult the "Getting Started" document before you request a Webserve account. The following steps are required: 1. Request a Group Account 1. Select a username that is descriptive of your project 2. You will be able to share the username and passphrase with project team members 2. Create a Webserve Account 1. Complete a short form be prepared to provide a description of your project 2. It may take 2-3 days to confirm your Webserve account after you apply 3. Create a Webtest Account if you think it would help to have a dev/test environment (Webserve is production Webtest is dev/test) 4. Create a MySQL account (required for Omeka) 1. When you apply for a MySQL account, you will receive a questionnaire to answer over . Below are guidelines in orange for how to respond (*asterisks indicate required responses):! Additional Address: You may want to enter an additional address for Webmaster notifications, but the owner and contact will receive official communication.! * Service Description: Please provide a description of the institutional purpose and the type of information and services that you wish to provide through this service (required) 1. Whatever the purpose is. Often individual faculty, staff or student research. Recycle description provided for Webserve account request. 2. Example: I will be using a Webserve account to host my digital research project, NAME OF PROJECT, which will use the open-source Omeka web publishing framework that relies on a mysql database ( * Peak Hits: Provide an estimate of the number of peak accesses from your web application(s) per minute during its heaviest period of use to 20 (depending on public interest)! * Maximum Size: Provide an estimate of the maximum size (in megabytes) that your database will attain MB (depending on the size and type of your digital collection audio and video files will take more room)! * Sensitive Data?: Will personal or sensitive information be collected and placed into the database? Find information about sensitive data 1. Yes No Almost always "No" unless your research is collecting and storing specific information about individuals or other sensitive data.! Details about Sensitive Data: If you answered yes, please provide details about what sensitive information you will be collecting.! Encryption?: If you answered yes, will the sensitive data be stored encrypted and retrieved decrypted?! * Security Measures: Describe the security measures that will be taken to safegaurd the data (such as a security scan). 1. Not storing sensitive data but will follow IU's IT policies and security standards.! * Backups: Do you understand that you are responsible for performing your

2 own database backups and that a restore done by UITS may be insufficient to restore your database? 1. Yes No Yes! * Details: Information on database backups can be found in the Guidelines & Responsibilities section of the MySQL user guide. Please provide details of your backup strategy 1. Regularly schedule dumps of all tables in DB. (you can use myphpadmin to do this)! * 3rd Party Software: Do you intend to use your MySQL account with third party software such as a Content Management System (e.g. Drupal, Joomla), a bulletin board/forum, or a blog? 1. Yes No Yes, with Omeka as described above.! Details: If so, which product(s) will be used? Where can we obtain information about the product? 1. Omeka, * Access Information: How do you wish to receive the access information for your MySQL accounts? 1. By phone By Campus Mail I generally choose Phone (quicker).! Address: If you chose"by Campus Mail", the address must be for an office located on campus, not an address. Providing an incorrect or an off campus address will significantly delay the process of receiving account information Someone from the IU Webmaster Office will call your MySQL login for both test and production accounts 5. Create a Streaming account if you need video or other multimedia access. The remaining steps, 6-7, are optional, and should be decided by the PI. Setting up MySQL 1. Read the MySQL documentation if you have never worked with MySQL before. 2. Log into your account at mysql.iu.edu with the username and password provided by IU Webmaster (Webserve). 3. Type mysql -u root -p to log into your MySQL instance as the root user. You will be prompted for the root password on the next line this was provided to you by Webserve and is different from the password used to login to your account. 4. Once you are logged in as root, type CREATE DATABASE `omeka` CHARACTER SET utf8 COLLATE utf8_general_ci to create a new database called "omeka" configured to Omeka's standards. 5. Create a new user by typing CREATE USER username@' %' IDENTIFIED BY 'password' (Change username and 'password' to something memorable). 6. Give the new user proper privileges to modify the new database by typing GRANT select,insert,update,delete on omeka.* to username@' %' identified by 'password' (once again, change 'username' and 'password' to whatever you chose in step 5). 7. Update the database by typing FLUSH PRIVILEGES

3 8. Write down the host name (mysql.iu.edu), the database name (omeka), and the username and password you created in step 5 and save it somewhere. You'll need it later. 9. Log out of mysql.iu.edu, and log into your main Webserve account at webserve.iu.edu. 10. Follow the instructions in Webserve's phpmyadmin Setup Guide. When editing the 'config.inc.php' file, use the port number assigned to you by IU Webmaster (Webserve) and the information you recorded in step 8. After entering the proper information and saving, you should now be able to access phpmyadmin. Use to access phpmyadmin, substituting your webserve account name for the username. Don't forget the '~'. 11. If you are having trouble accessing phpmyadmin, consider the following options: 1. Make sure you have " at the beginning of your URL. Leaving the protocol out of your URL defaults to HTTP, and phpmyadmin only works with HTTPS. 2. If you are getting an "Authorization Required" message, you are logged into an IU computer under your personal account. Add your username to phpmyadmin's.htaccess file (this is covered in step 3 of the phpmyadmin Setup Guide). 3. If you get a screen that says # Access denied for user 'username'@'lux.uits.indiana.edu' (using password: YES) or something similar, you have a mistake in your 'config.inc.php' file. 4. If you are getting some other error, contact Webserve. 12. Backups and File Restores You are responsible for performing and maintaining your own backups on mysql.iu.edu and mysql-test.iu.edu. 13. All accounts are pre-enabled for cron to permit you to run automated database checkpoint and backups. We strongly recommend doing a DB-level checkpoint mysqldump to ensure your data is backed up sufficiently should you need to restore data. While UITS performs standard system backups, because of the relationship between data elements within the data files needing to be in complete synchronization, a file restore done by UITS may not be sufficient to restore your database. For additional information see Backup and Recovery in the MySQL Reference Manual and the IU Webmaster document on MySQL backups. 14. Download and Install Omeka Go to the Omeka site and download the most compatible release. By this, we mean make sure that any Omeka Plug-ins you intend to you use (a common one is CSV import among others) are version compatible with the Omeka version you wish to install. Uncompress it and copy the Omeka directory to the www directory of your account on Webserve using secure FTP software. webserve.iu.edu port: 22 In the root directory of your Omeka Install is a file called "db.ini". You need to edit that file changing the X's to values specific to your setup.

4 Lines contain the username and password that you created to access the database you created in the previous step. Line 17 has a prefix value that is prepended to the name of each table in the database. This can be any short string you want, like "prjt", "wgc" and so forth. (in newer versions of Omeka this line is already set to "omeka_", do not change this unless you have a good reason). Line 19 has the port number, normally a 4 character value. You will need to check for the port number in phpmyadmin which will tell you the value to use for you account. It generally follows the server name in the server field on the first page of phpmyadmin tool. Make sure the line is not commented out, it should not begin with a "" Database Configuration File Omeka requires MySQL 5 or newer. To configure your database, replace the X's with your specific settings. If you're unsure about your database information, ask your server administrator, or consult the documentation at < [database] host = "localhost" username = "XXXXXXXX" password = "XXXXXXXX" dbname = "XXXXXXXX" prefix = "XXXXXX" charset = "utf8" port = "XXXX" There are a few more changes you need to make to make Omeka work on IU Serve. If you get a Mod_rewrite error with Omeka on webserve. Mod_rewrite setup To make sure mod_rewrite is working, you need to add a line to.htaccess in the Omeka root directory that reads: RewriteBase /~yourusername/omekadirectory/ Replacing yourusername with the name of your web serve account and omekadirectory with the directory where you installed Omeka. Usually, since this file begins with a "." you will need to edit the file at the command line using ssh in a Terminal window on Macs or using putty on Windows machines. You should follow these steps:

5 1. SSH to webserve.iu.edu 2. Use your account's name and passphrase to log in. 3. Move to your www directory by typing cd www at the Unix prompt. Then cd to the directory where you installed Omeka. 4. To list the files in your www directory, type ls at the Unix prompt. 5. To edit a file, type the name of the editor you wish to use, followed by the file you wish to edit. For example, to edit a file named '.htaccess' using the nano editor you would type "nano.htaccess" The following step is not necessary with Omeka 2.0. There is only one.htaccess file and it is in the Omeka base directory. There is no.htaccess file in the install directory. If installing Omeka 1.5.x you will need to make the following changes Finally, to do the Omeka install for Omeka 1.5.3, you will need to add this line to the.htaccess file in the install directory of Omeka. Usually after a successful install you remove this directory. Basically you are making sure that Omeka install can see mod_rewrite so you add a line similar to the above line but that has the install directory as well. So you add the following line to.htaccess in the install directory: RewriteBase /~yourusername/omekadirectory/install/ Replacing yourusername with the name of your web serve account and omekadirectory with the directory where you installed Omeka but just keeping "install" the same. This is the default name for the install directory. Follow the steps as outlined above. Now the actual install Use the same procedures for installing Omeka 2.0. Once these changes are done, in a Web Browser go to /install/ or Replace yourusername with the name of your web serve account and omeka or omeka with the directory where you installed Omeka but just keeping "install" the same. This is the default name for the install directory. Omeka should now connect to the database, create the tables it needs and setup your install of Omeka. You can now go to or the public site and or /admin to administrator the content and configuration of your Omeka site. Again replace yourusername with the name of your web serve account and omeka or omeka with the directory where you installed Omeka.

6 CSV Import Plugin Issues Issue 1: Error: The configured PHP path (/usr/local/bin/php) does not point to a PHP-CLI binary. You will get this error if your PHP binary has not been compiled with PHP-CLI included. If you are using Webserve to host Omeka, you need to go to your Omeka installation, go to the application/config directory and edit the config.ini file. Look for background.php.path= "" It is probably blank. You will need to make it use a specific php file so change that path to /usr/local/php5.4.16/bin/php background.php.path="/usr/local/php5.4.16/bin/php" If IUTS changes Webserve and the release of PHP, you may have to change this path. Issue 2: Error: Import settings expired. Please try again. This is generally caused by UTF-8 characters embedded in text in the CSV file. If you have saved that file using Excel, it does not do a particularly good job of handling UTF-8 unless you specifically tell it to during the export. I suggest that you download and use OpenOffice (free and open source). The spreadsheet app does a much better job of saving UTF-8 characters than Excel. Just save as a.csv file and then use that file when you browse for a file in the CSV plugin. Issue 3: Error: File being processed just freezes in the status queue. The CSV Import plugin can, on occasion, interfere with or be interfered with by other plugins. One way to fix this is to deactivate those plugins, but this will sometimes cause fields you are using to be unavailable. Another way to handle this is to edit application/config/config.ini. Look for and change jobs.dispatcher.longrunning = "Omeka_Job_Dispatcher_Adapter_BackgroundProcess" to jobs.dispatcher.longrunning = Omeka_Job_Dispatcher_Adapter_Synchronous" This will attempt to load the CSV file as one single process instead of running it in the background. It seems that running it in the background will often interfere with other plugins. If you have a very large csv

7 file, it may time out but I have typically loaded files with a 100 items without problems. In fact, I would suggest breaking files down to a smaller number of items when loading through CSV because it becomes easier to backout the items that may have a problem and to try again, rather than doing that with say a 1000 items at a time. The disadvantage of running in Synchronous mode is that when you select a file and then choose the mapping and then choose "Import CSV File", you will not be taken to the Status page until all the items are imported. This is also true if you back out an imported file. You must wait until all rows are processed. So I would suggest only making this change if necessary. URLs of Interest Omeka Omeka Plugins ons/ Account started/index.phtml group- account.phtml Mysql and- guides/mysql/index.phtml and- guides/mysql/phpmyadmin.phtml

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

HelpAndManual_illegal_keygen Contactor Elite Autoresponder Installation Guide

HelpAndManual_illegal_keygen Contactor Elite Autoresponder Installation Guide HelpAndManual_illegal_keygen Contactor Elite Autoresponder Guide HelpAndManual_illegal_keygen Contactor Elite Autoresponder Autoresponder and Newsletter Delivery System To most web sites, their mailing

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

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

Mysql Tutorial Create Database Username Password Through Phpmyadmin

Mysql Tutorial Create Database Username Password Through Phpmyadmin Mysql Tutorial Create Database Username Password Through Phpmyadmin Convert plain text to MD5 Hash and edit your MySQL Database. Every WordPress blog uses a MySQL Database which can be accessed through

More information

Website Backend Manual

Website Backend Manual Website Backend Manual Page Table of Contents Introduction Introduction to Drupal CMS User Login Content Management Content Overview Adding New Content Editing Homepage Slider Translating Content Blocks

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

oit

oit This handout is for passwordprotecting content on people. umass.edu or courses.umass.edu Web sites. To protect content on www.umass.edu-level sites, see our HTPASSWD to Password- Protect Pages on Campus

More information

oit Using HTPASSWD to Password Protect Pages on Campus Web Server Web sites UMass Offi ce of Information Technologies

oit Using HTPASSWD to Password Protect Pages on Campus Web Server Web sites UMass Offi ce of Information Technologies oit UMass Offi ce of Information Technologies This handout is for passwordprotecting content on www.umass. edu-level sites. To protect content on people.umass.edu or courses. umass.edu Web sites, see our

More information

XAMPP Web Development Stack

XAMPP Web Development Stack Overview @author R.L. Martinez, Ph.D. The steps below outline the processes for installing the XAMPP stack on a local machine. The XAMPP (pronounced Zamp) stack includes the following: Apache HTTP Server,

More information

The OHMS Plugin Suite User Guide

The OHMS Plugin Suite User Guide The OHMS Plugin Suite User Guide The OHMS Plugin Suite Initial Recommendations Configure Oral History Item Type in Omeka Plugin Installation and Configuration Prior to plugin installation Config file edit

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

Backing Up And Restoring Your Nagios XI System

Backing Up And Restoring Your Nagios XI System Backing Up And Restoring Your System Purpose This document describes how to backup a installation and restore a installation from a previously made backup. Backups are an important aspect of administration

More information

Adobe Marketing Cloud Using FTP and sftp with the Adobe Marketing Cloud

Adobe Marketing Cloud Using FTP and sftp with the Adobe Marketing Cloud Adobe Marketing Using FTP and sftp with the Adobe Marketing Contents Using FTP and sftp with the Adobe Marketing...3 Setting Up FTP Accounts Hosted by Adobe...3 Classifications...3 Data Sources...4 Data

More information

Administrator Quick Guide

Administrator Quick Guide 1 Administrator Quick Guide Login Screen The first page employees will see when visiting their training site is the login screen. This is where employees must enter their username and password to access

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

Magento Migration Tool. User Guide. Shopify to Magento. Bigcommerce to Magento. 3DCart to Magento

Magento Migration Tool. User Guide. Shopify to Magento. Bigcommerce to Magento. 3DCart to Magento Magento Migration Tool User Guide Shopify to Magento Bigcommerce to Magento 3DCart to Magento Copyright 2015 LitExtension.com. All Rights Reserved. Page 1 Contents 1. Preparation... 3 2. Setup... 4 3.

More information

Build

Build Active Scan User Manual Build 2.2.0.1 2017-04-14 This is the official user manual on using and configuring SAMLite Active Scan. Table of Contents SAMLite 5 Active Scan Guide... 3 Quick Setup Steps... 3

More information

Manual for CKForms component Release 1.3.1

Manual for CKForms component Release 1.3.1 Manual for CKForms component Release 1.3.1 This manual outlines the main features of the component CK Forms including the module and the plug-in. CKForms 1.3 is the new version of the component for Joomla

More information

Table of Contents. Overview of the TEA Login Application Features Roles in Obtaining Application Access Approval Process...

Table of Contents. Overview of the TEA Login Application Features Roles in Obtaining Application Access Approval Process... TEAL Help Table of Contents Overview of the TEA Login Application... 7 Features... 7 Roles in Obtaining Application Access... 7 Approval Process... 8 Processing an Application Request... 9 The Process

More information

How To Install Modules Joomla 2.5 On Wamp Server Pdf

How To Install Modules Joomla 2.5 On Wamp Server Pdf How To Install Modules Joomla 2.5 On Wamp Server Pdf This tutorial shows you how to install the full version of Joomla 3.4.1. on a Wamp. Can I install WordPress on Windows computer other than live WordPress

More information

Users Guide. Kerio Technologies

Users Guide. Kerio Technologies Users Guide Kerio Technologies C 1997-2006 Kerio Technologies. All rights reserved. Release Date: June 8, 2006 This guide provides detailed description on Kerio WebSTAR 5, version 5.4. Any additional modifications

More information

Zend Server Cluster Manager 5.x Installation Guide

Zend Server Cluster Manager 5.x Installation Guide Zend Server Cluster Manager 5.x Installation Guide By Zend Technologies www.zend.com This is the Installation Guide for Server Cluster Manager, Version 5.0. The information in this document is subject

More information

Bitnami MariaDB for Huawei Enterprise Cloud

Bitnami MariaDB for Huawei Enterprise Cloud Bitnami MariaDB for Huawei Enterprise Cloud First steps with the Bitnami MariaDB Stack Welcome to your new Bitnami application running on Huawei Enterprise Cloud! Here are a few questions (and answers!)

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

PDshop Installation Guide (For ASP.NET Editions)

PDshop Installation Guide (For ASP.NET Editions) PDshop Installation Guide (For ASP.NET Editions) PageDown Technology, LLC / Copyright 2003-2010 All Rights Reserved. FOR USE WHEN INSTALLING: PDshop.Net Original (Version 1) PDshop.Net Standard (Version

More information

Bitnami Moodle for Huawei Enterprise Cloud

Bitnami Moodle for Huawei Enterprise Cloud Bitnami Moodle for Huawei Enterprise Cloud Description Moodle is a Course Management System that is designed using sound pedagogical principles to help educators create effective online learning communities.

More information

Bitnami Pimcore for Huawei Enterprise Cloud

Bitnami Pimcore for Huawei Enterprise Cloud Bitnami Pimcore for Huawei Enterprise Cloud Description Pimcore is the open source platform for managing digital experiences. It is the consolidated platform for web content management, product information

More information

Easy Survey Creator: User s Guide

Easy Survey Creator: User s Guide Easy Survey Creator: User s Guide The Easy Survey Creator software is designed to enable faculty, staff, and students at the University of Iowa Psychology Department to quickly and easily create surveys

More information

Web Hosting Control Panel

Web Hosting Control Panel Web Hosting Control Panel cpanel Hosting refers to any web hosting plan that uses cpanel as its web hosting control panel. cpanel is the leading control panel interface in the web hosting industry today.

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

When the plug-in is installed, you get a new button, to go to Upgrade application screen:

When the plug-in is installed, you get a new button, to go to Upgrade application screen: Technical Documentation Reference : Plugin Install Auto Version : V1.0 Plug-in Install Auto Introduction The objective of this document is to explain how to use the plug-in "Install Auto". With this plug-in

More information

Settings tab. User guide

Settings tab. User guide Settings tab User guide Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Settings overview... 2 2. Settings tab selections... 3 Backup user identity... 3 Email server settings... 4 Email

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

Bitnami Coppermine for Huawei Enterprise Cloud

Bitnami Coppermine for Huawei Enterprise Cloud Bitnami Coppermine for Huawei Enterprise Cloud Description Coppermine is a multi-purpose, full-featured web picture gallery. It includes user management, private galleries, automatic thumbnail creation,

More information

FB Image Contest. Users Manual

FB Image Contest. Users Manual FB Image Contest Users Manual Table of contents Description.. 3 Step by step installation... 5 The administration interface.. 10 Creating a new contest... 13 Creating a Facebook Application.. 19 Adding

More information

Zend Server Cluster Manager 5.5 Beta. Installation Guide. By Zend Technologies.

Zend Server Cluster Manager 5.5 Beta. Installation Guide. By Zend Technologies. Zend Server Cluster Manager 5.5 Beta Installation Guide By Zend Technologies www.zend.com Abstract This is the Installation Guide for Zend Server Cluster Manager Version 5.5 Beta. The information in this

More information

Table of Contents. User Manual v

Table of Contents. User Manual v Table of Contents User Manual v6.0...1 Introduction...2 What is KBPublisher?...2 Public area...2 Administration area...3 KBPublisher Uses...5 Public Area (front-end)...7 Admin Area (Back-End); Common Actions...10

More information

Please post bugs on our forum on or us on

Please post bugs on our forum on  or  us on Login One! authentication and user plug-in for Joomla! 3.x Trial Edition 2011-2018 INNATO BV - www.innato.nl - All rights reserved **************************************************************************

More information

4D WebSTAR V User Guide for Mac OS. Copyright (C) D SA / 4D, Inc. All rights reserved.

4D WebSTAR V User Guide for Mac OS. Copyright (C) D SA / 4D, Inc. All rights reserved. 4D WebSTAR V User Guide for Mac OS Copyright (C) 2002 4D SA / 4D, Inc. All rights reserved. The software described in this manual is governed by the grant of license provided in this package. The software

More information

Bitnami MySQL for Huawei Enterprise Cloud

Bitnami MySQL for Huawei Enterprise Cloud Bitnami MySQL for Huawei Enterprise Cloud Description MySQL is a fast, reliable, scalable, and easy to use open-source relational database system. MySQL Server is intended for mission-critical, heavy-load

More information

Table of Contents. University of Miami Information Technology SharePoint FAQs Page 2

Table of Contents. University of Miami Information Technology SharePoint FAQs Page 2 SharePoint FAQs Table of Contents SharePoint FAQs... 3 General Information... 3 Who is eligible for a SharePoint site?... 3 How do I login to SharePoint?... 3 Who can see my SharePoint site?... 3 How can

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

Setting up VPS on Ovh public cloud and installing lamp server on Ubuntu instance

Setting up VPS on Ovh public cloud and installing lamp server on Ubuntu instance Setting up VPS on Ovh public cloud and installing lamp server on Ubuntu instance What is OVH Public Cloud Public Cloud Instances provides a choice of two types of virtual machines: the RAM instances are

More information

Administration Manual

Administration Manual Administration Manual Enterprise Edition V 2018.04.27 @2018 Call2Unlock http://www.call2unlock.com Page1 Content SYSTEM OVERVIEW... 3 Introduction... 3 INSTALLATION AND CONFIGURATION... 6 1. Updating the

More information

Using the Self-Service Portal

Using the Self-Service Portal UBC Workspace 2.0 Using the Self-Service Portal Using the Self-Service Portal to access and manage your content July 2017 Table of Contents Introduction... 3 Overview... 3 User Types... 4 Compliance and

More information

Bitnami ez Publish for Huawei Enterprise Cloud

Bitnami ez Publish for Huawei Enterprise Cloud Bitnami ez Publish for Huawei Enterprise Cloud Description ez Publish is an Enterprise Content Management platform with an easy to use Web Content Management System. It includes role-based multi-user access,

More information

LabTech Ignite Installation

LabTech Ignite Installation LabTech LabTech Ignite Installation LABTECH IGNITE INSTALLATION... 1 Overview... 1 Readiness Checklist... 1 Server Installation... 2 Creating a Client Import File... 17 Using SSL Connections... 18 SSL

More information

How To Start Mysql Use Linux Command Line Client In Xampp

How To Start Mysql Use Linux Command Line Client In Xampp How To Start Mysql Use Linux Command Line Client In Xampp It also assumes that you're familiar with the MySQL command-line client and that you And since both Amazon and Bitnami have a free tier, you can

More information

Linux Network Administration. MySQL COMP1071 Summer 2017

Linux Network Administration. MySQL COMP1071 Summer 2017 Linux Network Administration MySQL COMP1071 Summer 2017 Databases Database is a term used to describe a collection of structured data A database software package contains the tools used to store, access,

More information

About Backup and Restore, on page 1 Supported Backup and Restore Procedures, on page 3

About Backup and Restore, on page 1 Supported Backup and Restore Procedures, on page 3 About, on page 1 Supported Procedures, on page 3 Back Up Automation Data Using the GUI, on page 4 Restore Automation Data Using the GUI, on page 6 Schedule a Backup of Automation Data Using the GUI, on

More information

Installation Guide. For use with all.net versions of PDshop Revised: 12/29/17. PDshop.com / Copyright All Rights Reserved.

Installation Guide. For use with all.net versions of PDshop Revised: 12/29/17. PDshop.com / Copyright All Rights Reserved. PDshop Installation Guide For use with all.net versions of PDshop Revised: 12/29/17 PDshop.com / Copyright 2002-2018 All Rights Reserved. 1 Table of Contents If you are already using a.net version of PDshop

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

Quick Note 24. Extracting the debug.txt file from a TransPort. Digi Technical Support. February Page 1

Quick Note 24. Extracting the debug.txt file from a TransPort. Digi Technical Support. February Page 1 Quick Note 24 Extracting the debug.txt file from a TransPort Digi Technical Support February 2016 Page 1 Contents 1 Introduction... 3 2 Version... 4 3 FTP method... 5 3.1 FTP Using FileZilla FTP Client...

More information

STAAR Alternate 2 and TELPAS Assessment Management System User s Guide

STAAR Alternate 2 and TELPAS Assessment Management System User s Guide 2017 2018 STAAR Alternate 2 and TELPAS Assessment Management System User s Guide TABLE OF CONTENTS Introduction...1 Signing in...1 Training Site...3 Infrastructure Trial...4 Create and Manage User Accounts...9

More information

How to recover a lost administrator password?

How to recover a lost administrator password? How to recover a lost administrator password? This article describes what to do if you forget the administrator password or have misplaced the very root-user. The article is intended primarily for beginners,

More information

Salesforce DX Setup Guide

Salesforce DX Setup Guide Salesforce DX Setup Guide Version 44.0, Winter 19 @salesforcedocs Last updated: September 6, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

Bitnami OroCRM for Huawei Enterprise Cloud

Bitnami OroCRM for Huawei Enterprise Cloud Bitnami OroCRM for Huawei Enterprise Cloud Description OroCRM is a flexible open-source CRM application. OroCRM supports your business no matter the vertical. If you are a traditional B2B company, franchise,

More information

User Guide. BlackBerry Workspaces for Windows. Version 5.5

User Guide. BlackBerry Workspaces for Windows. Version 5.5 User Guide BlackBerry Workspaces for Windows Version 5.5 Published: 2017-03-30 SWD-20170330110027321 Contents Introducing BlackBerry Workspaces for Windows... 6 Getting Started... 7 Setting up and installing

More information

How To Install Joomla Component 2.5 On Wamp Server 2.1

How To Install Joomla Component 2.5 On Wamp Server 2.1 How To Install Joomla Component 2.5 On Wamp Server 2.1 1 Create a Place on Your Remote Host to Install Joomla! 2 Copy Files and 2.1 Upload all Files by FTP, 2.2 Upload a Compressed File. 3 Copy the Contents

More information

Full version is >>> HERE <<<

Full version is >>> HERE <<< how to create a database in netbeans 6.9; create a database in excel youtube; how to create a database with mysql command line; create a database backup job using sql server management studio Full version

More information

A Guide for Customer Accounts

A Guide for Customer Accounts A Guide for Customer Accounts Introduction This document contains set up and configuration guides for ODDS Customer Accounts. This manual helps to assist customers with the setup of their ODDS account,

More information

Coaches and Team Managers Getting Started Guide. For coaches and parent volunteers who use SportsEngine to manage teams and schedules.

Coaches and Team Managers Getting Started Guide. For coaches and parent volunteers who use SportsEngine to manage teams and schedules. Coaches and Team Managers Getting Started Guide For coaches and parent volunteers who use SportsEngine to manage teams and schedules. Table of Contents Introduction... 3 Verifying Your Access... 3 Editing

More information

Zend Server Cluster Manager 5.6 Installation Guide

Zend Server Cluster Manager 5.6 Installation Guide Zend Server Cluster Manager 5.6 Installation Guide By Zend Technologies www.zend.com Abstract This is the Installation Guide for Zend Server Cluster Manager Version 5.6. The information in this document

More information

Wimba Classroom Version 6.1 System Administrator Guide

Wimba Classroom Version 6.1 System Administrator Guide Wimba Classroom Version 6.1 System Administrator Guide Wimba Classroom 6.1 System Administrator Guide 1 Administration Tools 2 Room Administration 3 Server Login Styles 3 Selecting a Server Login Style

More information

Joomla 3.X Global Settings Part III Server Settings

Joomla 3.X Global Settings Part III Server Settings Joomla 3.X Global Settings Part III Server Settings Diagram 1 Path to Temp Folder: This is a text box adjacent to this prompt which holds the path to Joomla s temp folder on the web server. This is the

More information

Secret Server Demo Outline

Secret Server Demo Outline Secret Server is a feature rich product that can be introduced to your prospects in many different ways. Below is a generic outline of several of the most important features that should be covered during

More information

AVG Business Edition Remote Administration

AVG Business Edition Remote Administration AVG Business Edition Remote Administration User Manual Document revision AVG.02 (1/7/2018) Copyright AVG Technologies CZ, s.r.o. All rights reserved. All other trademarks are the property of their respective

More information

Version 3.3 System Administrator Guide

Version 3.3 System Administrator Guide Version 3.3 System Administrator Guide This document provides information Ensemble Video System Administrators can use to design and implement an appropriate Ensemble Video organizational framework, manage

More information

SpiraTeam Help Desk Integration Guide Inflectra Corporation

SpiraTeam Help Desk Integration Guide Inflectra Corporation / SpiraTeam Help Desk Integration Guide Inflectra Corporation Date: July 23rd, 2018 Contents Introduction... 1 1. KronoDesk... 2 2. Zendesk... 7 Introduction SpiraTeam is an integrated Application Lifecycle

More information

WestHost Knowledgebase. Introduction to cpanel

WestHost Knowledgebase. Introduction to cpanel WestHost Knowledgebase Introduction to cpanel cpanel is the interface that all our clients use in order to manage a shared hosting account. This document will provide a very basic overview of the available

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

Bitnami Piwik for Huawei Enterprise Cloud

Bitnami Piwik for Huawei Enterprise Cloud Bitnami Piwik for Huawei Enterprise Cloud Description Piwik is a real time web analytics software program. It provides detailed reports on website visitors: the search engines and keywords they used, the

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

KYOCERA Net Admin User Guide

KYOCERA Net Admin User Guide KYOCERA Net Admin User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable

More information

Files.Kennesaw.Edu. Kennesaw State University Information Technology Services. Introduces. Presented by the ITS Technology Outreach Team

Files.Kennesaw.Edu. Kennesaw State University Information Technology Services. Introduces. Presented by the ITS Technology Outreach Team Kennesaw State University Information Technology Services Introduces Files.Kennesaw.Edu Presented by the ITS Technology Outreach Team Last Updated 08/12/13 Powered by Xythos Copyright 2006, Xythos Software

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

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

If you re the administrator on any network,

If you re the administrator on any network, Let s do an inventory! If you re the administrator on any network, chances are you ve already faced the need to make an inventory. In fact, keeping a list of all the computers, monitors, software and other

More information

Chapter 4 Using the Entry-Master Disk Utilities

Chapter 4 Using the Entry-Master Disk Utilities Chapter 4 Using the Entry-Master Disk Utilities Now that you have learned how to setup and maintain the Entry-Master System, you need to learn how to backup and restore your important database files. Making

More information

User Guide. Version 8.0

User Guide. Version 8.0 User Guide Version 8.0 Contents 1 Getting Started... iii 1.1... About... iii 2 Logging In... 4 2.1... Choosing Security Questions... 4 3 The File Manager... 5 3.1... Uploading a file... 6 3.2... Downloading

More information

Presidential Transition Taskforce

Presidential Transition Taskforce Presidential Transition Taskforce Office 365 OneDrive for Business Sharepoint Online University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Introduction This

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

Getting Started Guide

Getting Started Guide Getting Started Guide November 2017 2 Table of Contents 1.0 Introduction to Your Vitrium Security Account... 3 1.1 About Vitrium Security... 3 1.2 Definition of Key Terms... 3 1.3 Overview of the Main

More information

Apache Manual Install Ubuntu Php Mysql. Phpmyadmin No >>>CLICK HERE<<<

Apache Manual Install Ubuntu Php Mysql. Phpmyadmin No >>>CLICK HERE<<< Apache Manual Install Ubuntu Php Mysql Phpmyadmin No Ubuntu 14.10 LAMP server tutorial with Apache 2, PHP 5 and MySQL (MariaDB) Additionally, I will install phpmyadmin to make MySQL administration easier.

More information

Bitnami Open Atrium for Huawei Enterprise Cloud

Bitnami Open Atrium for Huawei Enterprise Cloud Bitnami Open Atrium for Huawei Enterprise Cloud Description Open Atrium is designed to help teams collaborate by providing an intranet platform that includes a blog, a wiki, a calendar, a to do list, a

More information

Admin System for User Management

Admin System for User Management Admin System for User Management Contents ADMIN SYSTEM FOR USER MANAGEMENT... 1 CALLING UP AND ACTIVATING USER MANAGEMENT... 1 THE MAIN USER MANAGEMENT WINDOW... 2 Admin System for User Management Calling

More information

Faculty Web Page Management System. Help Getting Started

Faculty Web Page Management System. Help Getting Started Faculty Web Page Management System Help Getting Started 2 Table of Contents Faculty Web Page Management System...1 Help Getting Started...1 Table of Contents...2 Manage My Personal Information...3 Creating

More information

Faculty Training. Blackboard I Workshop Bobbi Dubins

Faculty Training. Blackboard I Workshop Bobbi Dubins Faculty Training Blackboard I Workshop Bobbi Dubins Table of Contents Introduction... 2 blackboard.allegany.edu... 2 Overview of Features:... 2 Using Blackboard... 3 Changing Your Password... 3 How to

More information

HEXDATA DOCUMENTATION

HEXDATA DOCUMENTATION HEXDATA DOCUMENTATION Overview:- HexData is an import/export tool based on Joomla CMS. It provides you a very simple and flexible way to add/update data to your Website. It also allows you to keep a backup

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

Http Error Code 403 Forbidden Dreamweaver Mysql

Http Error Code 403 Forbidden Dreamweaver Mysql Http Error Code 403 Forbidden Dreamweaver Mysql Dreamweaver Database Http Error Code 403 Forbidden 오류 403 Forbidden Adobe Systems Inc. Adobe Dreamweaver. 459. Dreamweaver Error 1045 오류. They can range

More information

Spring 2017 Gabriel Kuri

Spring 2017 Gabriel Kuri Lab 2 ECE 431L Spring 2017 Gabriel Kuri This lab is made up of two parts. Part 1 will consist of familiarizing yourself with the Raspberry Pi (RPi). It includes running Unix/Linux commands to become somewhat

More information

Bitnami Tiny Tiny RSS for Huawei Enterprise Cloud

Bitnami Tiny Tiny RSS for Huawei Enterprise Cloud Bitnami Tiny Tiny RSS for Huawei Enterprise Cloud Description Tiny Tiny RSS is an open source web-based news feed (RSS/Atom) reader and aggregator, designed to allow you to read news from any location,

More information

Using.htaccess to Restrict Access to OU Directories

Using.htaccess to Restrict Access to OU Directories Using.htaccess to Restrict Access to OU Directories Last Updated: 7/8/15/ by lucero@uark.edu Webmasters can place.htaccess files in any directory in OU or on Cavern to restrict access. The two examples

More information

Setting up the Seagate D4 NAS with Hard Disk Sentinel Pro. By Gary Ryan. Adapted from:

Setting up the Seagate D4 NAS with Hard Disk Sentinel Pro. By Gary Ryan. Adapted from: Setting up the Seagate D4 NAS with Hard Disk Sentinel Pro By Gary Ryan Adapted from: https://www.hdsentinel.com/how_to_monitor_network_attached_storage_nas_status.php How to: monitor Network Attached Storage

More information

Faculty Guide to Blackboard

Faculty Guide to Blackboard Faculty Guide to Blackboard August 2012 1 Table of Contents Description of Blackboard... 3 Uses of Blackboard... 3 Hardware Configurations and Web Browsers... 3 Logging Into Blackboard... 3 Customizing

More information

SBCC Web File System - Xythos

SBCC Web File System - Xythos Table of Contents Table of Contents...1 Purpose...1 Login Procedure...1 Creating and Sharing a Web Folder for MAT153...2 Dreamweaver Remote Info...4 I Forgot My Pipeline Credentials...6 Purpose This purpose

More information

Migration Tool. User Guide. SHOPIFY to MAGENTO. Copyright 2014 LitExtension.com. All Rights Reserved.

Migration Tool. User Guide. SHOPIFY to MAGENTO. Copyright 2014 LitExtension.com. All Rights Reserved. SHOPIFY to MAGENTO Migration Tool User Guide Copyright 2014 LitExtension.com. All Rights Reserved. Shopify to Magento Migration Tool: User Guide Page 1 Contents 1. Preparation... 3 2. Set-up... 3 3. Set-up...

More information

Veriato Recon / 360. Version 9.0.3

Veriato Recon / 360. Version 9.0.3 Veriato Recon / 360 Version 9.0.3 1/3/2018 Upgrade Guide January 3, 2018 Table of Contents Before You Begin... 1 What's New... 1 How the System Works... 1 Upgrade Support... 6 Update Antivirus Exclusions...

More information