Infinity Connect Web App Customization Guide

Size: px
Start display at page:

Download "Infinity Connect Web App Customization Guide"

Transcription

1 Infinity Connect Web App Customization Guide Contents Introduction 1 Hosting the customized Web App 2 3 More information 5 Introduction The Infinity Connect Web App is included with all Pexip Infinity deployments. It is part of the Pexip Infinity Connect suite of clients that provides an easy way for participants to access Virtual Meeting Rooms and Virtual Auditoriums, and make person-to-person calls via the Pexip Distributed Gateway from a web browser or desktop client. Infinity Connect clients also allow users to view a list of all other conference participants, control aspects of the conference (if they have Host privileges) and share their screen with other participants. The Infinity Connect Web App is accessed when users point a web browser at a Conferencing Node, and provides a WebRTC or Flash-based interface to Pexip Infinity services. The Web App is supported in the following browsers: Google Chrome version 27 and later Mozilla Firefox version 20 and later Opera version 23 and later Microsoft Internet Explorer version 10 and later (requires Flash Player 11 and later ActiveX plug-in, and must not be in Compatibility View) Apple Safari version 6 and later (Mac OS X only) (requires Flash Player 11 and later plug-in) This guide describes how to customize the Infinity Connect Web App, and explains how to make the most frequently required branding changes. This guide assumes knowledge of core web design technologies: HTML, JavaScript and CSS. This guide does not explain how to customize the Infinity Connect desktop client. For information on this, see the Infinity Connect Desktop Client Customization Guide Pexip AS Version 8.a February 2015 Page 1 of 5

2 Hosting the customized Web App Hosting the customized Web App There are two methods for hosting the customized Infinity Connect Web App: Apply the changes to the Conferencing Nodes and serve them from the Conferencing Nodes. This method is easier for small deployments, but any changes must be backed up before upgrading to a later release of Pexip Infinity otherwise the upgrade will overwrite the customizations. Copy the Web App to an external web server or reverse proxy (e.g. the Pexip Reverse Proxy) and serve it from this server. This method is more appropriate for production deployments, but the copy of the Web App on the external web server or reverse proxy must be upgraded manually when the Pexip Infinity installation is upgraded. The Infinity Connect Web App is stored in /opt/pexip/share/web/static/app on the Pexip Conferencing Nodes. If you are hosting the Web App on an external web server or reverse proxy, this whole directory tree should be copied over to the other server. The application_settings subdirectory contains the files that can be customized. There are two core files: branding.css: this is a stylesheet file that can be used to change colors and images etc. translations.js: this is a JavaScript file that provides all the text used in the Web App. Additionally, if you are hosting the Web App on an external web server, the network.js file should be edited, and the RTC_NODE variable should be changed to point to the Conferencing Node for example, RTC_NODE: "conferencingnode1.example.com", (by default this variable points to the domain serving the site). You can only specify one Conferencing Node. This modification is not required if you are hosting the Web App on a reverse proxy as that will typically already be configured to forward requests to your Conferencing Nodes. We recommend that any additional custom images are also stored in the application_settings directory. The default settings for the appearance of the Web App are hard-coded within the application itself, and are used automatically where no customization overrides have been specified. Maintaining customizations when upgrading Pexip Infinity When upgrading to a new version of Pexip Infinity, the customized application_settings directory can be migrated to the new version. Customizations hosted on a Conferencing Node If your customizations have been applied to a Conferencing Node: 1. Before you upgrade Pexip Infinity, backup the application_settings directory containing your current customizations. 2. After the upgrade, re-install your customized application_settings directory back onto the Conferencing Node. 3. Check if you need to add any more customizations to support any new features (see Checking for new features below). Customizations hosted on an external web server or reverse proxy If your customizations have been applied to an external web server or reverse proxy: 1. Backup the application_settings directory on the external web server or reverse proxy containing your current customizations. 2. Upgrade your Pexip Infinity Conferencing Node. 3. Copy the upgraded /opt/pexip/share/web/static/app directory tree from the Conferencing Node to the external web server or reverse proxy. 4. Re-install your customized application_settings directory back onto the external web server or reverse proxy. 5. Check if you need to add any more customizations to support any new features (see Checking for new features below) Pexip AS Version 8.a February 2015 Page 2 of 5

3 Checking for new features When new versions of Pexip Infinity add more features to the Web App, any customizable text and colors will be added to the default versions of the application_settings files that are shipped with the new version. Therefore, we recommend that after an upgrade you compare your customized versions of these files with the new default versions, to see if any text, styles, colors or resource files should be adjusted. When editing the files, you must use a text editor that does not apply "smart quotes" or make any automatic text changes, as the files are sensitive to correct formatting. Use a code editor or simple file editor instead of word processing software. Branding and styles Initially, all of the style definitions within branding.css are commented out (using /* */ blocks). To customize a specific style you must locate the relevant style in branding.css, remove the comment blocks, and then change the style definition according to your branding requirements. That style will then be applied and will override the default settings. Example - Changing the home page logo The home page logo is controlled by the contents of the.brand logo block of the branding.css file. Initially, the style definitions within the.brand logo block are commented out like this:.brand logo { /* background-image: url(../application_settings/logo.png); height: 45px; width: 86px; */ To use a different logo, you must: 1. Remove the comment blocks (the /* and */ lines). This means that the.brand logo configuration specified within the branding.css file will now be applied to the Web App and will override the default settings. 2. Upload your alternative logo.png file to the application_settings directory, replacing the existing file. 3. Modify the height and width settings to match the actual width and height of the image contained in your logo.png file. Thus, when uncommented and adjusted for a logo.png file that contains, for example, a 50x90 pixel image, the.brand logo block would look like this:.brand logo { background-image: url(../application_settings/logo.png); height: 50px; width: 90px; Background color and image on the home page You can change the background color and the background image via the background setting in the html segment toward the top of the branding.css file. html { background: #eee url(../application_settings/list-background.png); 2015 Pexip AS Version 8.a February 2015 Page 3 of 5

4 This defines a light gray (#eee) background and fills it with a tiling pattern from a new file called list-background.png that needs to be added to the application_settings directory. "Advanced" text label color on the home page The.form toggle block configures the text color of the Advanced label on the home page widget that toggles the display of the Advanced options..form toggle { color: #f38b3c; Conference name color scheme (top of roster) The.conference details block controls the color scheme used to display the conference name at the top of the roster..conference details { background-color: #f38b3c; border-bottom-color: #d07125; color: #fff; By default the text is white, the background is Pexip orange, with a darker orange border below. Search box text color The.search participants block configures the color of the text in the participant search box..search participants input { color: #f38b3c; Connecting, audio-only, and presentation-only images You can customize three of the images used in the Web App. The.stage-audio-only block configures the image used to represent an audio-only call, by default an orange telephone..stage-audio-only { background: #333 url(../assets/images/audio_avatar.png) center center no-repeat; The.stage-present-only block configures the image used to represent a presentation-only call, by default an orange screen with an arrow..stage-present-only { background: #333 url(../assets/images/presentation.png) center center no-repeat; The.stage child block configures the icon used while connecting, by default a spinning orange infinity sign..stage child { background: #333 url(../assets/images/spinner.gif) center center no-repeat; There are no specific file format, image or file size limitations imposed by the Web App. Other settings This guide only describes the most commonly customized settings in the branding.css file. The file contains many other customizable settings that can be used to configure the colors of other text, icons, and backgrounds throughout the Web App. Use the style names within the branding.css file as an indication of each style's purpose Pexip AS Version 8.a February 2015 Page 4 of 5

5 More information Text used in labels and messages All of the text that is used in the Infinity Connect Web App can be configured in the translations.js file. Although the translations.js file is set up for multi-language support, this is not yet implemented, and so all edits must be made on the en language. Text customizations are simply a matter of changing the text assigned with a token. To find the token to change, just search in the translations.js file for the text that needs to be changed, edit the text, and save your changes back to the same file. Home page text The most common branding changes are made to the text on the home page, as follows: The page title, as displayed in the browser tab: TITLE: 'Pexip Infinity Connect', The text underneath the logo on the home page: LOGIN_HEADING: 'Infinity Connect', The alternative text used in place of the logo on the home page: LOGO: 'Pexip', The text above the input boxes on the home page: LOGIN_LABEL_PERSON_OR_CONFERENCE: 'Person or conference to dial', LOGIN_YOUR_NAME: 'Your name', The error text displayed for invalid inputs on the home page: LOGIN_NO_CONFERENCE: 'Please enter a conference name', LOGIN_NO_USERNAME: 'Please enter a username', LOGIN_INVALID_CONFERENCE: 'Invalid conference', Bandwidth options The following items configure the bandwidth options in the drop-down box on the home page. This is expressed as a JavaScript associative array. Entries can be removed, renamed, or added. The value parameters are expressed as strings, and represent the actual bandwidth in kbps that the Web App will use for video. The Web App automatically uses an additional 64kbps for audio, which cannot be customized. Therefore each specified value needs to be 64kbps less than the total bandwidth amount required for video and audio. BANDWIDTHS: JSON.stringify([ {name:'low Bandwidth (256kbps)', value: '192', {name:'medium Bandwidth (576kbps)', value: '512', {name:'high Bandwidth (1264kbps)', value: '1200', {name:'maximum Bandwidth (1864kbps)', value: '1800' ]) More information In addition to customizing the appearance of the Infinity Connect Web App, you can also: Customize the Infinity Connect desktop client. For more information, see the Infinity Connect Desktop Client Customization Guide. Use themes to change the voice prompts and images provided to participants when they are accessing a Virtual Meeting Room, Virtual Auditorium or Virtual Reception. For more information, see the Pexip Infinity Administrator Guide. If any further information on customizing Pexip Infinity is required, please contact support@pexip.com Pexip AS Version 8.a February 2015 Page 5 of 5

Citrix StoreFront. Customizing the Receiver for Web User Interface. 2012 Citrix. All rights reserved.

Citrix StoreFront. Customizing the Receiver for Web User Interface. 2012 Citrix. All rights reserved. Citrix StoreFront Customizing the Receiver for Web User Interface 2012 Citrix. All rights reserved. Customizing the Receiver for Web User Interface Introduction Receiver for Web provides a simple mechanism

More information

Dashboard Builder TM for Microsoft Access

Dashboard Builder TM for Microsoft Access Dashboard Builder TM for Microsoft Access Web Edition Application Guide Version 5.3 5.12.2014 This document is copyright 2007-2014 OpenGate Software. The information contained in this document is subject

More information

Web Conferencing Version 8.3 Troubleshooting Guide

Web Conferencing Version 8.3 Troubleshooting Guide System Requirements General Requirements Web Conferencing Version 8.3 Troubleshooting Guide Listed below are the minimum requirements for participants accessing the web conferencing service. Systems which

More information

8x8 Virtual Room User Guide

8x8 Virtual Room User Guide 8x8 Version 1.0, July 2011 The Champion For Business Communications Table of Contents Introduction...3 System Requirements...4 8x8 Virtual Room...5 Virtual Office Online Login Procedure...5 Create a Virtual

More information

Connecting With Lifesize Cloud

Connecting With Lifesize Cloud There are several different ways to connect to a Lifesize Cloud video conference meeting. This guide will provide you instructions for each way. Ways to Join a Lifesize Cloud Video Conference After getting

More information

Connecting With Lifesize Cloud

Connecting With Lifesize Cloud There are several different ways to connect to a Lifesize Cloud video conference meeting. This guide will provide you instructions for each way. Ways to Join a Lifesize Cloud Video Conference After getting

More information

Working with RD Web Access in Windows Server 2012

Working with RD Web Access in Windows Server 2012 Working with RD Web Access in Windows Server 2012 Introduction to RD Web Access So far in this series we have talked about how to successfully deploy and manage a Microsoft Windows Server 2012 VDI environment.

More information

Spontania User Setup Guide

Spontania User Setup Guide Spontania User Setup Guide ClearOne 5225 Wiley Post Way Suite 500 Salt Lake City, UT 84116 Telephone 1.800.945.7730 1.801.975.7200 Spontania Support 1.801.974.3612 TechSales 1.800.705.2103 FAX 1.801.977.0087

More information

ISE Web Portal Customization Options. Secure Access How-to User Guide Series

ISE Web Portal Customization Options. Secure Access How-to User Guide Series ISE Web Portal Customization Options Secure Access How-to User Guide Series Author: Jason Kunst Date: July 9, 2015 Table of Contents About this guide... 3 Prerequisite to using JavaScript on your portal

More information

Recommended Browser Setting for MySBU Portal

Recommended Browser Setting for MySBU Portal The MySBU portal is built using Microsoft s SharePoint technology framework, therefore, for the best viewing experience, Southwest Baptist University recommends the use of Microsoft s Internet Explorer,

More information

REDCENTRIC UNITY SOFTWARE MINIMUM REQUIREMENTS

REDCENTRIC UNITY SOFTWARE MINIMUM REQUIREMENTS REDCENTRIC UNITY SOFTWARE MINIMUM REQUIREMENTS User Guide v1.0 12/08/2014 VERSION CONTROL Date Change Author 12/08/14 1.0 Initial version created and signed off DM Page 2 Public UNITY SOFTWARE MINIMUM

More information

5.1 Features 1.877.204.6679. sales@fourwindsinteractive.com Denver CO 80202

5.1 Features 1.877.204.6679. sales@fourwindsinteractive.com Denver CO 80202 1.877.204.6679 www.fourwindsinteractive.com 3012 Huron Street sales@fourwindsinteractive.com Denver CO 80202 5.1 Features Copyright 2014 Four Winds Interactive LLC. All rights reserved. All documentation

More information

OBIEE : Browser and Operating System Compatibility. Including Known Issues and Solutions

OBIEE : Browser and Operating System Compatibility. Including Known Issues and Solutions OBIEE : Browser and Operating System Compatibility Including Known Issues and Solutions Contents PREFACE... 2 SUPPORTED BROWSERS AND OPERATING SYSTEMS... 3 SUMMARY OF KNOWN BROWSER/OS ISSUES:... 4 ISSUE

More information

Joomla! template JSN Mico Customization Manual

Joomla! template JSN Mico Customization Manual Joomla! template JSN Mico Customization Manual (for JSN Mico 1.0.x) www.facebook.com/joomlashine www.twitter.com/joomlashine www.youtube.com/joomlashine This documentation is release under Creative Commons

More information

WebRTC-powered ICEWARP VERSION 11.1. www.icewarp.com

WebRTC-powered ICEWARP VERSION 11.1. www.icewarp.com WebRTC-powered ICEWARP VERSION 11.1 IceWarp 11.1 is the industry-first messaging solution that offers WebRTC-powered voice and video calls, online meetings and chat. All you need is an enabled browser.

More information

Joomla! template JSN Boot Customization Manual

Joomla! template JSN Boot Customization Manual Joomla! template JSN Boot Customization Manual (for JSN Boot 1.0.x) www.facebook.com/joomlashine www.twitter.com/joomlashine www.youtube.com/joomlashine This documentation is release under Creative Commons

More information

Interact Intranet Version 7. Technical Requirements. August 2014. 2014 Interact

Interact Intranet Version 7. Technical Requirements. August 2014. 2014 Interact Interact Intranet Version 7 Technical Requirements August 2014 2014 Interact Definitions... 3 Licenses... 3 On-Premise... 3 Cloud... 3 Pulic Cloud... 3 Private Cloud... 3 Perpetual... 3 Self-Hosted...

More information

Change Advanced Proxy Server Configuration Settings

Change Advanced Proxy Server Configuration Settings Change Advanced Proxy Server Trigger Business Process Procedure Overview This project will show you how to change Configuration settings on the Advanced tab. This section is used to enter information about

More information

The cloud server setup program installs the cloud server application, Apache Tomcat, Java Runtime Environment, and PostgreSQL.

The cloud server setup program installs the cloud server application, Apache Tomcat, Java Runtime Environment, and PostgreSQL. GO-Global Cloud 4.1 QUICK START SETTING UP A WINDOWS CLOUD SERVER AND HOST This guide provides instructions for setting up a cloud server and configuring a host so it can be accessed from the cloud server.

More information

Copyright 2014 http://itfreetraining.com

Copyright 2014 http://itfreetraining.com This video will look the different versions of Active Directory Federation Services. This includes which features are available in each one and which operating system you need in order to use these features.

More information

Recommended operating systems and software for end user services. Operating systems and software not supported for end user services

Recommended operating systems and software for end user services. Operating systems and software not supported for end user services Recommended operating systems and software for end user services There are different requirements for different features in Office 365 Beta Beta, but the following list will work with every feature: Windows

More information

dotmailer for Salesforce Installation Guide Winter 2015 Version 2.30.1

dotmailer for Salesforce Installation Guide Winter 2015 Version 2.30.1 for Salesforce Installation Guide Winter 2015 Version 2.30.1 Page 1 CONTENTS 1 Introduction 2 Browser support 2 Self-Installation Steps 2 Checks 3 Package Download and Installation 4 Users for Email Automation

More information

Danaos Platform Conferencing Quick Users Guide

Danaos Platform Conferencing Quick Users Guide DANAOS Management Consultants Danaos Platform Conferencing Quick Users Guide Danaos Platform is the professional social network for the shipping industry Offering a Shipping Directory, Conferencing, Forums,

More information

MAGENTO THEME SHOE STORE

MAGENTO THEME SHOE STORE MAGENTO THEME SHOE STORE Developer: BSEtec Email: support@bsetec.com Website: www.bsetec.com Facebook Profile: License: GPLv3 or later License URL: http://www.gnu.org/licenses/gpl-3.0-standalone.html 1

More information

Instructions for Configuring Your Browser Settings and Online Security FAQ s. ios8 Settings for iphone and ipad app

Instructions for Configuring Your Browser Settings and Online Security FAQ s. ios8 Settings for iphone and ipad app Instructions for Configuring Your Browser Settings and Online Security FAQ s ios8 Settings for iphone and ipad app General Settings The following browser settings and plug-ins are required to properly

More information

FAQs. How do I remove the search bar completely?

FAQs. How do I remove the search bar completely? FAQs Company Logo How do I change the logo? Can I make the logo larger or smaller? How do I add change or remove the logo in the footer? Can I add a favicon? Navigation Menu How do I change my navigation

More information

Quick Start Guide Mobile Entrée 4

Quick Start Guide Mobile Entrée 4 Table of Contents Table of Contents... 1 Installation... 2 Obtaining the Installer... 2 Installation Using the Installer... 2 Site Configuration... 2 Feature Activation... 2 Definition of a Mobile Application

More information

Get Started in Web Conference Classes: Set Up WebEx

Get Started in Web Conference Classes: Set Up WebEx Get Started in Web Conference Classes: Set Up WebEx Don t miss class on your first day because of technical issues. Make sure you and your computer are ready for web conference classes with this guide.

More information

Streaming Media System Requirements and Troubleshooting Assistance

Streaming Media System Requirements and Troubleshooting Assistance Test Your System Streaming Media System Requirements and Troubleshooting Assistance Test your system to determine if you can receive streaming media. This may help identify why you are having problems,

More information

BT MAGAZINE. JOOMLA 3.x TEMPLATE. Total User Guide Version 1.0. Copyright 2013 Bowthemes.com support@bowthemes.com. www.bowthemes.

BT MAGAZINE. JOOMLA 3.x TEMPLATE. Total User Guide Version 1.0. Copyright 2013 Bowthemes.com support@bowthemes.com. www.bowthemes. 1 BT MAGAZINE JOOMLA 3.x TEMPLATE Total User Guide Version 1.0 Copyright 2013 Bowthemes.com support@bowthemes.com 1 Table of Contents INTRODUCTION... 2 Template Features... 2 Compressed File Contents...

More information

JTouch Mobile Extension for Joomla! User Guide

JTouch Mobile Extension for Joomla! User Guide JTouch Mobile Extension for Joomla! User Guide A Mobilization Plugin & Touch Friendly Template for Joomla! 2.5 Author: Huy Nguyen Co- Author: John Nguyen ABSTRACT The JTouch Mobile extension was developed

More information

Accessing Websites. Mac/PC Compatibility: QuickStart Guide for Business

Accessing Websites. Mac/PC Compatibility: QuickStart Guide for Business Accessing Websites Mac/PC Compatibility: QuickStart Guide for Business 2 Accessing Websites QuickStart Guide for Business The Basics People use the web for research, entertainment, and business. And it

More information

8x8 Virtual Office Phone System Setup Guide

8x8 Virtual Office Phone System Setup Guide 8x8 Virtual Office May 2013 Effective May 10, 2013, the Privileges tab in the top navigation bar of the Account Manager was renamed My Account. Privileges and User Profiles can now be found in the My Account

More information

Receptionist Console Quick Reference Guide

Receptionist Console Quick Reference Guide Receptionist Console Quick Reference Guide Table of Contents About MegaPath Receptionist... 3 Requirements for Running the Receptionist software... 3 Operating System... 3 Hardware Requirements... 3 Software

More information

Web Supervisor/Agent. System Requirements & Troubleshooting Guide. 989 Old Eagle School Road Wayne, PA 19087 (610) 964-8000. www.evolveip.

Web Supervisor/Agent. System Requirements & Troubleshooting Guide. 989 Old Eagle School Road Wayne, PA 19087 (610) 964-8000. www.evolveip. Web Supervisor/Agent System Requirements & Troubleshooting Guide 989 Old Eagle School Road Wayne, PA 19087 (610) 964-8000 www.evolveip.net Evolve IP Guide Copyright Notice Trademarks Copyright 2011 Evolve

More information

SpringCM Troubleshooting Guide for Salesforce

SpringCM Troubleshooting Guide for Salesforce SpringCM Troubleshooting Guide for Salesforce July 2013 TABLE OF CONTENTS FAQS:... 3 WHY DID I NOT RECEIVE A SPRINGCM ACTIVATION EMAIL?... 3 WHY DON T MY SALESFORCE USERS HAVE ACCESS TO SPRINGCM?... 3

More information

Mac OS X. Staff members using NEIU issued laptops and computers on Active Directory can access NEIU resources that are available on the wired network.

Mac OS X. Staff members using NEIU issued laptops and computers on Active Directory can access NEIU resources that are available on the wired network. Mac OS X The University Technology Services is privileged to offer a secure wifi network to the university community. Connecting to this network will provide you with benefits in security and improved

More information

How To Use Tsplashbox On A Pc Or Mac Or Mac (For A Pc) With A Windows 7 Computer (For Mac) Or Mac) With Tsplatro (For Pc) Or Ipad (For Windows) With An

How To Use Tsplashbox On A Pc Or Mac Or Mac (For A Pc) With A Windows 7 Computer (For Mac) Or Mac) With Tsplatro (For Pc) Or Ipad (For Windows) With An TSplus User Guide Administration and Configuration for TSplus Remote Desktop Software TSplus - www.terminalserviceplus.com Page 1 Contents TSplus User Guide... 1 Administration and Configuration for TSplus

More information

WebEx Meeting Center Tutorial

WebEx Meeting Center Tutorial VIRGINIA TECH WebEx Meeting Center Tutorial Getting Started Guide Instructional Technology Team, College of Engineering Last Updated: Fall 2014 Contents Introduction 2 Minimum System Requirements 2 How

More information

This convenient service works in tandem with NDLD s Audio Conferencing feature.

This convenient service works in tandem with NDLD s Audio Conferencing feature. This guide provides easy instructions to get you started. I. Introduction NDLD s Web Conferencing service is a powerful, yet easy-to-use tool for sharing real-time presentations on the Internet. It enables

More information

Lisa Sabin-Wilson WILEY. Wiley Publishing, Inc.

Lisa Sabin-Wilson WILEY. Wiley Publishing, Inc. by Lisa Sabin-Wilson WILEY Wiley Publishing, Inc. Table of Contents Introduction 1 About This Book 1 Foolish Assumptions 2 Conventions Used in This Book 3 What You Are Not to Read 4 How This Book Is Organized

More information

Contents. Overview 2. Getting Started 5. Web Browser Compatibility 6. Appearance Options 7. Alternate Domains 8. Basic Options And Features 10

Contents. Overview 2. Getting Started 5. Web Browser Compatibility 6. Appearance Options 7. Alternate Domains 8. Basic Options And Features 10 Contents Overview 2 Getting Started 5 Web Browser Compatibility 6 Appearance Options 7 Alternate Domains 8 Basic Options And Features 10 Uploading Files 11 Moving Files 13 Thumbnail Listings 14 Quick Image

More information

8x8 Click2Pop User Guide

8x8 Click2Pop User Guide USER GUIDE 8x8 User Guide Getting Started with April 2014 Contents Introduction... 3 What s new.... 3 8x8.... 3 Here is how works...4 8x8 Click2Connect.... 4 Requirements.... 4 Installation on Microsoft

More information

System Requirements and Technical Prerequisites for SAP SuccessFactors HCM Suite

System Requirements and Technical Prerequisites for SAP SuccessFactors HCM Suite System Requirements and Technical Prerequisites for SAP SuccessFactors HCM Suite SAP SuccessFactors HCM Suite is a fully web-based offering. You will need an Internet connection and a system that meets

More information

Systems must meet the following requirements when using the Matrix WebConnect service: Average Network Bandwidth Utilization

Systems must meet the following requirements when using the Matrix WebConnect service: Average Network Bandwidth Utilization Premier Web Conferencing Quick Start Guide This guide provides the basic information necessary to start a Matrix WebConnect Web Conference. Please review the system requirements to ensure you have everything

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

Installation Guide. (You can get these files from http://www.clariostechnology.com/intelligentreports/install)

Installation Guide. (You can get these files from http://www.clariostechnology.com/intelligentreports/install) Clarios Technology Pty. Ltd. Intelligent Reporter Installation Guide Installing Intelligent Reports JIRA plugin The Intelligent Reports plugin for JIRA is available through the Atlassian Marketplace. Follow

More information

ADOBE FLASH PLAYER Local Settings Manager

ADOBE FLASH PLAYER Local Settings Manager ADOBE FLASH PLAYER Local Settings Manager Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Storage...............................................................................................................

More information

Spontania User Setup Guide

Spontania User Setup Guide Spontania User Setup Guide ClearOne 5225 Wiley Post Way Suite 500 Salt Lake City, UT 84116 Telephone 1.800.945.7730 1.801.975.7200 Spontania Support 1.801.974.3612 TechSales 1.800.705.2103 FAX 1.801.977.0087

More information

Virtual Office Account Manager Phone System Setup Guide. 8x8 Virtual Office Phone System Setup Guide

Virtual Office Account Manager Phone System Setup Guide. 8x8 Virtual Office Phone System Setup Guide 8x8 Virtual Office Version 1.1, October 2011 Contents Introduction...3 System Requirements...4 Supported Operating Systems....4 Required Plug-ins....4 Supported Browsers....4 Required Firewall Ports...4

More information

Acrolinx IQ. Acrolinx IQ Plug-in for Adobe CQ Rich Text Editor Installation Guide Version: 2.9

Acrolinx IQ. Acrolinx IQ Plug-in for Adobe CQ Rich Text Editor Installation Guide Version: 2.9 Acrolinx IQ Acrolinx IQ Plug-in for Adobe CQ Rich Text Editor Installation Guide Version: 2.9 2 Contents Overview 3 About this Guide...3 Acrolinx IQ and CQ Editor...3 Installation 4 Single Sign-on Configuration...4

More information

Version 2.8. Released 30 September 2015

Version 2.8. Released 30 September 2015 Intel Collaboration Suite for WebRTC (Intel CS for WebRTC) Version 2.8 Released 30 September 2015 1. Disclaimer This release note as well as the software described in it is furnished under license and

More information

Remote Access Services Apple Macintosh - Installation Guide

Remote Access Services Apple Macintosh - Installation Guide Remote Access Services Apple Macintosh - Installation Guide Version. February, 05 P age Contents GETTING STARTED... JAVA VERIFICATION, INSTALLATION, AND CONFIGURATION... Checking Mac OS version... Java

More information

Connection. to SECON-Server

Connection. to SECON-Server Technical Documentation SECON-X OpenVPN Installation Connection. to SECON-Server Version: 1 Edition: 2015-03 Art. No: 350199 FAFNIR GmbH Bahrenfelder Str. 19 22765 Hamburg, Germany Tel.: +49 / 40 / 39

More information

Fortis Theme Update Guide

Fortis Theme Update Guide Fortis Theme Update Guide Copyright 2012 Infortis 1 Table of Contents 1. How to update the theme?...3 2. Important changes...5 2.1 Fortis Theme version 1.3.1...5 2.2 Fortis Theme version 1.3.0...5 2.3

More information

This manual cannot be redistributed without permission from joomla-monster.com

This manual cannot be redistributed without permission from joomla-monster.com This manual cannot be redistributed without permission from joomla-monster.com Visit the official website joomla-monster.com of this Joomla template and other thematic and high quality templates. Copyright

More information

ReadyConnect Web Meeting Premium Edition User Guide

ReadyConnect Web Meeting Premium Edition User Guide ReadyConnect Web Meeting Premium Edition User Guide This guide provides the basic information necessary to start a ReadyConnect Web Meeting session. Please review the requirements below to ensure you have

More information

Release Notes: J-Web Application Package Release 15.1A1 for Juniper Networks EX Series Ethernet Switches

Release Notes: J-Web Application Package Release 15.1A1 for Juniper Networks EX Series Ethernet Switches Release Notes: J-Web Application Package Release 15.1A1 for Juniper Networks EX Series Ethernet Switches Release 15.1A1 4 June 2015 Revision 1 Contents Release Notes: J-Web Application Package Release

More information

Install and End User Reference Guide for Direct Access to Citrix Applications

Install and End User Reference Guide for Direct Access to Citrix Applications Install and End User Reference Guide for Direct Access to Citrix Applications Version 1.0 7/26/2013 This remote access end user reference guide provides an overview of how to install Citrix receiver (a

More information

VPN Web Portal Usage Guide

VPN Web Portal Usage Guide VPN Web Portal Usage Guide Table of Contents WHAT IS VPN WEB CLIENT 4 SUPPORTED WEB BROWSERS 4 LOGGING INTO VPN WEB CLIENT 5 ESTABLISHING A VPN CONNECTION 6 KNOWN ISSUES WITH MAC COMPUTERS 6 ACCESS INTRANET

More information

Reference Guide for WebCDM Application 2013 CEICData. All rights reserved.

Reference Guide for WebCDM Application 2013 CEICData. All rights reserved. Reference Guide for WebCDM Application 2013 CEICData. All rights reserved. Version 1.2 Created On February 5, 2007 Last Modified August 27, 2013 Table of Contents 1 SUPPORTED BROWSERS... 3 1.1 INTERNET

More information

Citrix Receiver 11.8 for Macintosh OS X

Citrix Receiver 11.8 for Macintosh OS X 1. Document Control Record Document title Document Owner Citrix Receiver 11.8 for Macintosh OS X Rayna McKinley 2. Issue and Amendment Record Issue Date Revised by Comments 1 8/15/2013 Rayna McKinley Original

More information

Sizmek Features. Wallpaper. Build Guide

Sizmek Features. Wallpaper. Build Guide Features Wallpaper Build Guide Table Of Contents Overview... 3 Known Limitations... 4 Using the Wallpaper Tool... 4 Before you Begin... 4 Creating Background Transforms... 5 Creating Flash Gutters... 7

More information

PC CHECKING MINDTAP SYSTEM REQUIREMENTS

PC CHECKING MINDTAP SYSTEM REQUIREMENTS PC CHECKING MINDTAP SYSTEM REQUIREMENTS Contents Introduction 3 Hardware 4 Platforms 6 Screen Resolution 8 Windows 7 and 8 8 Windows 10 10 Using System Check 11 Browsers 12 Chrome 13 Firefox 14 Internet

More information

Apache Server Implementation Guide

Apache Server Implementation Guide Apache Server Implementation Guide 340 March Road Suite 600 Kanata, Ontario, Canada K2K 2E4 Tel: +1-613-599-2441 Fax: +1-613-599-2442 International Voice: +1-613-599-2441 North America Toll Free: 1-800-307-7042

More information

Qlik Sense Desktop. Qlik Sense 2.0.6 Copyright 1993-2015 QlikTech International AB. All rights reserved.

Qlik Sense Desktop. Qlik Sense 2.0.6 Copyright 1993-2015 QlikTech International AB. All rights reserved. Qlik Sense Desktop Qlik Sense 2.0.6 Copyright 1993-2015 QlikTech International AB. All rights reserved. Copyright 1993-2015 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik Sense, QlikView,

More information

Unified Meeting 5 User guide for MAC

Unified Meeting 5 User guide for MAC Unified Meeting 5 User guide for MAC Unified Meeting 5 is a web based tool that puts you in complete control of all aspects of your meeting including scheduling, managing and securing your meetings.. Whether

More information

ireview Template Manual

ireview Template Manual ireview Template Manual Contents Template Overview... 2 Main features... 2 Template Installation... 3 Installation Steps... 3 Upgrading ireview... 3 Template Parameters... 4 Module Positions... 6 Module

More information

Sizmek Formats. Collage. Build Guide

Sizmek Formats. Collage. Build Guide Formats Collage Build Guide Table Of Contents Overview... 3 Supported Platforms... 3 Specifications... 3 Known Issues... 3 Ad Behavior Screenshots... 4 Template Included Files... 8 Setting up in Workshop...

More information

Version 1.0.0 USER GUIDE

Version 1.0.0 USER GUIDE Magento Extension Grid Manager Version 1.0.0 USER GUIDE Last update: Aug 13 th, 2013 DragonFroot.com Grid Manager v1-0 Content 1. Introduction 2. Installation 3. Configuration 4. Troubleshooting 5. Contact

More information

PORTAL ADMINISTRATION

PORTAL ADMINISTRATION 1 Portal Administration User s Guide PORTAL ADMINISTRATION GUIDE Page 1 2 Portal Administration User s Guide Table of Contents Introduction...5 Core Portal Framework Concepts...5 Key Items...5 Layouts...5

More information

The Evolved Office APPLICATION PLATFORM REQUIREMENTS. Release: 16.0

The Evolved Office APPLICATION PLATFORM REQUIREMENTS. Release: 16.0 The Evolved Office APPLICATION PLATFORM REQUIREMENTS TM 989 Old Eagle School Road Suite 315 Wayne, PA 19087 USA 610.964.8000 www.evolveip.net Release: 16.0 Table of Contents The Evolved Office Assistant

More information

Defender 5.7 - Token Deployment System Quick Start Guide

Defender 5.7 - Token Deployment System Quick Start Guide Defender 5.7 - Token Deployment System Quick Start Guide This guide describes how to install, configure and use the Defender Token Deployment System, based on default settings and how to self register

More information

GoToMeeting. User Guide. 7414 Hollister Avenue Goleta CA 93117. http://support.citrixonline.com. 2013 Citrix Online, LLC. All rights reserved.

GoToMeeting. User Guide. 7414 Hollister Avenue Goleta CA 93117. http://support.citrixonline.com. 2013 Citrix Online, LLC. All rights reserved. GoToMeeting User Guide 7414 Hollister Avenue Goleta CA 93117 http://support.citrixonline.com 2013 Citrix Online, LLC. All rights reserved. Contents Get Started with Your Account... 1 Log In... 1 Download

More information

Release Notes. VidyoWeb Version 1.1.0 (16) December, 2014 Doc. Rev A

Release Notes. VidyoWeb Version 1.1.0 (16) December, 2014 Doc. Rev A Release Notes VidyoWeb Version 1.1.0 (16) December, 2014 Doc. Rev A Important: Please review the list of known issues and limitations before installing. 2014 Vidyo, Inc. all rights reserved. Vidyo s technology

More information

New Online Banking Guide for FIRST time Login

New Online Banking Guide for FIRST time Login New Online Banking Guide for FIRST time Login Step 1: Login Enter your existing Online Banking User ID and Password. Click Log-In. Step 2: Accepting terms and Conditions to Proceed Click on See the terms

More information

Introduction to Ingeniux Forms Builder. 90 minute Course CMSFB-V6 P.0-20080901

Introduction to Ingeniux Forms Builder. 90 minute Course CMSFB-V6 P.0-20080901 Introduction to Ingeniux Forms Builder 90 minute Course CMSFB-V6 P.0-20080901 Table of Contents COURSE OBJECTIVES... 1 Introducing Ingeniux Forms Builder... 3 Acquiring Ingeniux Forms Builder... 3 Installing

More information

Video conferencing with its multiple simultaneous video chats demands a good deal from your computer. The following platforms are required:

Video conferencing with its multiple simultaneous video chats demands a good deal from your computer. The following platforms are required: VIDEO CONFERENCING TECHNICAL REQUIREMENTS AND SETUP TUTORIAL Conferences are conducted through the class website. No special conferencing software or service is required. Participation requires that your

More information

PLATO Learning Environment System and Configuration Requirements for workstations. October 27th, 2008

PLATO Learning Environment System and Configuration Requirements for workstations. October 27th, 2008 PLATO Learning Environment System and Configuration Requirements for workstations October 27th, 2008 Windows 2000 Professional with SP4 Windows XP Professional with SP2 Windows XP Home Edition with SP2

More information

Supported Client Devices: - SIP/H.323 hardware and software end-points

Supported Client Devices: - SIP/H.323 hardware and software end-points Zeenov Agora is a scalable and high-performance video, audio, desktop sharing, data collaboration and communication platform that we offer as a service for hosting all your online meetings. Zeenov Agora

More information

Citrix : Remediation - MAC

Citrix : Remediation - MAC Citrix : Remediation - MAC Key Points: 1. 2. 3. 4. 5. 6. 7. Understanding End Point Scan Analysis Supported anti-virus and firewall products Configuring AVAST/SOPHOS and the Mac OS X Firewall Installing

More information

Customising Your Mobile Payment Pages

Customising Your Mobile Payment Pages Corporate Gateway Customising Your Mobile Payment Pages V2.0 May 2014 Use this guide to: Understand how to customise your payment pages for mobile and tablet devices XML Direct Integration Guide > Contents

More information

Requirements for Developing WebWorks Help

Requirements for Developing WebWorks Help WebWorks Help 5.0 Originally introduced in 1998, WebWorks Help is an output format that allows online Help to be delivered on multiple platforms and browsers, which makes it easy to publish information

More information

SERENA SOFTWARE Providing Custom Documentation for Serena Business Manager

SERENA SOFTWARE Providing Custom Documentation for Serena Business Manager SERENA SOFTWARE Providing Custom Documentation for Serena Business Manager Pam Goodrich 2015-05-04 Table of Contents Who Should Read This Paper?... 3 Addressing Unique Documentation Needs... 3 Options

More information

Remote Access End User Reference Guide for SHC Portal Access

Remote Access End User Reference Guide for SHC Portal Access Remote Access End User Reference Guide for SHC Portal Access Version 2.0 6/7/2012 This remote access end user reference guide provides an overview of how to install Citrix receiver, which is a required

More information

WEB MAPPING TOOL DOCUMENTATION

WEB MAPPING TOOL DOCUMENTATION ENTERPRISE ZONES RE DESIGNATION WEB MAPPING TOOL DOCUMENTATION January 26, 2015 COVER PAGE TABLE OF CONTENTS INTRODUCTION 1 APPLICATION LAYOUT 2 WEB MAP NAVIGATION 3 LOCATION SEARCH 4 MAP LEGEND 5 BASEMAP

More information

Mistral Joomla Template

Mistral Joomla Template Mistral Joomla Template Documentation Copyright arrowthemes Table of Contents Introduction... 4 1.1 Template Overview... 5 Theme Styles and admin options... 5 Theme profiles... 5 Theme Layouts... 5 1.2

More information

HP Cloud Service Automation

HP Cloud Service Automation HP Cloud Service Automation Software Version 4.50 Customize the Marketplace Portal Contents Overview... 3 Use Cases... 3 Preparing to Customize the Marketplace Portal... 4 Simple Standard Portal Customizations...

More information

Managing your online courses is now easier than ever

Managing your online courses is now easier than ever Managing your online courses is now easier than ever Instructor s Quick Guide: LexisNexis Web Courses What s New? The updated features in LexisNexis Web Courses help make the most of your most valuable

More information

Configuration Guide BES12. Version 12.3

Configuration Guide BES12. Version 12.3 Configuration Guide BES12 Version 12.3 Published: 2016-01-19 SWD-20160119132230232 Contents About this guide... 7 Getting started... 8 Configuring BES12 for the first time...8 Configuration tasks for managing

More information

How To Customize A Forum On Vanilla Forum On A Pcode (Forum) On A Windows 7.3.3 (For Forum) On An Html5 (Forums) On Pcode Or Windows 7 (Forforums) On Your Pc

How To Customize A Forum On Vanilla Forum On A Pcode (Forum) On A Windows 7.3.3 (For Forum) On An Html5 (Forums) On Pcode Or Windows 7 (Forforums) On Your Pc 1 Topics Covered Introduction Tool Box Choosing Your Theme Homepage Layout Homepage Layouts Customize HTML Basic HTML layout Understanding HTML Layout Breaking down and customizing the code The HTML head

More information

LifeSize Control TM Deployment Guide

LifeSize Control TM Deployment Guide LifeSize Control TM Deployment Guide July 2011 LifeSize Control Deployment Guide 2 LifeSize Control This guide is for network administrators who use LifeSize Control to manage video and voice communications

More information

Skills for Employment Investment Project (SEIP)

Skills for Employment Investment Project (SEIP) Skills for Employment Investment Project (SEIP) Standards/ Curriculum Format For Web Design Course Duration: Three Months 1 Course Structure and Requirements Course Title: Web Design Course Objectives:

More information

Service Providers and WebRTC

Service Providers and WebRTC Whitepaper Service Providers and WebRTC New Product Opportunities Over- the- Top (OTT) services are those that deliver communications features to customers but are apps running on the data network rather

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing

More information

How to start with 3DHOP

How to start with 3DHOP How to start with 3DHOP Package content, local setup, online deployment http://3dhop.net 30/6/2015 The 3DHOP distribution Where to find it, what s inside The 3DHOP distribution package From the page http://3dhop.net/download.php

More information

SAS Business Data Network 3.1

SAS Business Data Network 3.1 SAS Business Data Network 3.1 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2014. SAS Business Data Network 3.1: User's Guide. Cary,

More information

Bridgit 4.6 software

Bridgit 4.6 software Release notes Bridgit 4.6 software About these release notes These release notes summarize the features and requirements of Bridgit 4.6 software and updates to resolved issues. Product information Bridgit

More information

ACORD. Lync 2013 Web-app Install Guide

ACORD. Lync 2013 Web-app Install Guide ACORD Lync 2013 Web-app Install Guide 1 Index Internet Explorer Pages 3-5 Google Chrome..Pages 6-8 Mozilla Firefox.Pages 9-12 Safari..Pages 13-16 2 If using Internet Explorer as your default browser upon

More information

Technical Specifications. Technical requirements for Eversheds E-Learning and Learning Management System (LMS)

Technical Specifications. Technical requirements for Eversheds E-Learning and Learning Management System (LMS) Technical Specifications Technical requirements for Eversheds E-Learning and Learning Management System (LMS) 1 Learning Management System (LMS) Client Requirements... 3 Web browsers... 3 ActiveX security

More information