Meeting Users' Needs with Free Software for your IBM i

Size: px
Start display at page:

Download "Meeting Users' Needs with Free Software for your IBM i"

From this document you will learn the answers to the following questions:

  • What kind of Notes were available for you to use?

  • Where can you find a Browser for the Browser?

  • What can you do with existing applications?

Transcription

1 Meeting Users' Needs with Free Software for your IBM i Jon Paris Partner400.com Free Software? By "Free" I mean as in: No need to obtain budget approval No direct cost Although you may choose to opt for a service contract Free to modify to meet your own requirements In most cases but not all Note: "Free" does not mean "Cheap and Nasty" Much of the free software I have used is as good or better than software from conventional sources For many ISVs this is just a different marketing strategy Partner400, 2016 Lecture Notes: Page 1 of 16

2 Meeting Users Needs? I'm using a very broad definition here of the term "Meeting" What I'm really talking about is... Anything that will help you to say "YES" to user requests Part of our problem is that we say "No" far too often Our counterparts on Windows etc. don't say that as often... So guess who gets to do all the new interesting stuff And who is left defending their platform and maintaining old stuff - As well as dealing with interfacing their new stuff with our old stuff! So we'll talk about everything: From tools that can help document systems To tools that help you build apps faster To complete applications that fill holes in your portfolio What We ll Cover... Updating business practices with new free/low-cost tools Everything from: Customer Relationship Management Help Desk software User Documentation Web sites Extending your RPG application set Free Tools that can help you to: Build new applications faster or Extend existing applications into new areas Partner400, 2016 Lecture Notes: Page 2 of 16

3 A Few Examples From the PHP World Customer Relationship Management Portal Content Management Content Management e-commerce Course Management System Simple Wiki Wiki Bulletin Board Help Desk SugarCRM - Customer Relationship Management Partner400, 2016 Lecture Notes: Page 3 of 16

4 MANTIS Help Desk Software Uses native DB2 Data usable from RPG, Query, COBOL, SQL... Available under GNU GPL Open Source license I.e. It is FREE FOREVER Create/manage Internal and External Support Issues Any web browser, any client operating system notification as Issues are progressed Supported by Curbstone Corporation They have used it in-house to track problems for many years Mantis Main View Not as sophisticated as SugarCRM But highly customizable And the price is tough to beat! Partner400, 2016 Lecture Notes: Page 4 of 16

5 osticket - Support Ticket Tracking An alternative to Mantis - osticket.com Definitely better looking Doesn't track as deeply into the development process More oriented to customer facing problem reporting Requires use of Zend DBi (MySQL) or you can convert to DB2 Yet Another Help Desk Option Hesk - The system currently used by System i Developer Simple Free Well supported What more could you ask! Part of a complete CRM suite Partner400, 2016 Lecture Notes: Page 5 of 16

6 Communication - Internal and External Internal and External Web sites A web site that is easy to maintain is more likely to be maintained Consider using a Wiki, or Content Management System (CMS) I'll be discussing MediaWiki It is so easy to use that your end users can write their own pages! For a CMS how about Drupal? The latest UI changes significantly simplify implementation How about a Bulletin Board system? PHPBB is used by huge numbers of Bulletin Boards all over the world So customizable that you may not recognize them all as being the same software A great way to share hints, tips, or news of that great new subprocedure Can also be used as a low-level Help-Desk vehicle Or as part of a program to gather feedback and communicate with customers Wikis - MediaWiki (mediawiki.org) Partner400, 2016 Lecture Notes: Page 6 of 16

7 Sample MediaWiki Coding... You can also do '''bold''' text and ''italic'' but '''''bold italic''''' is really messy! But tables are quite easy to do as you can see in the example below. { + Really Simple Table Item A1 Item A2 Item A3 - Item B1 Item B2 Item B3... Indented lists are also very simple and can include numbered lists. *First Level [[LinkPage with a built in link]] **This at the second level **So is this ***Indent a bit more ***And another at that level *Now back to the top level And here we are back in normal text followed by an example of a slightly more complex table with row and cell alignment: { class="wikitable" + More Complex Example WIth Headers and Alignment! < ---- Header >!! < ---- Header >!! < ---- Header > - Default cell 1 Default cell 2 Default cell 3 - style="text-align:right;" Row right align 1 Row right align 2 Row right align 3 - Left aligned style="text-align:center;" Centered style="text-align:right;" Right aligned } Build Web Sites - Drupal & Drupal Gardens Drupal (drupal.org) Complete Content Management System Features include support for blogs, forums, RSS feeds, etc. Simplified install process, Language support, Update status and more Version 7 had a heavy focus on usability Dealing with many earlier complaints about ease-of-use Comprehensive support for developers brings it really close to being usable as an Application Framework Version 8 promises to be even better Partner400 experimented with Drupal We are now working with GetSimple CMS as Drupal was overkill for our needs Drupal Gardens gives you a way to try Drupal easily You can build and run a complete site free-of-charge Check it out atdrupalgardens.com Then export it to run it locally on your own system Or upgrade at very low cost to run it on their web site Partner400, 2016 Lecture Notes: Page 7 of 16

8 Drupal - Simple Site Editing options only appear for authorized users And Now... Extending your RPG application set Free Tools that can help you to: Test applications more easily Build new applications faster Extend existing applications into new areas Partner400, 2016 Lecture Notes: Page 8 of 16

9 Generating Test Data With Faker <?php require DIR.'/../src/autoload.php'; $faker = Faker\Factory::create(); print '<table border="1">'; for ($i=0; $i < 10; $i++) { print '<tr><td>'. $faker->firstname. ' '. $faker->lastname. '</td>'; print '<td>'. $faker->phonenumber. '</td>'; print '<td>'. $faker->streetaddress. '</td>'; print '<td>'. $faker->city. '</td>'; print '<td>'. $faker->postcode. '</td>'; print '<td>'. $faker->stateabbr. '</td></tr>'; } print '</table>'; Find it at github.com/fzaninotto/faker Names, Addresses, Phone numbers, Zip codes, s, Text, etc. Also try generatedata generatedata.com An on-line offering that produces downloadable test data Building New Applications Faster Courtesy of Application Frameworks Acknowledgement that applications have common requirements A Framework is a set of sophisticated building blocks Think of them as providing a more advanced version of program cloning Most employ Object Oriented design and programming methods But you don't have to code in an OO style to use them A great way to produce feature-rich applications quickly Three that I have used and like are: PHPGrid XataFace and idatagrid - an IBM i specific offering We will look briefly at each of them in a moment Partner400, 2016 Lecture Notes: Page 9 of 16

10 PHPGrid - New tool that simplifies the building of CRUD applications Can be used by itself Not exactly free! Or embedded in more complex applications Completely OO but still easy to use without OO skills Only lines marked are required for a working grid require_once("../conf.php"); // Include main phpgrid configuration and routines // Identify table and required columns and default sort column $dg = new C_DataGrid("select customernumber, customername, city, state, country from customers", "customernumber", "customers"); $dg -> set_query_filter("state!= '' "); // Set WHERE clause $dg -> set_dimension(1000, 600); $dg -> set_pagesize(20); // Set height and width of grid // Increase page size to 40 $dg -> enable_search(true); $dg -> enable_export('pdf'); // Enable search // Enable pdf export $dg -> display(); // And now show the world! Results of Simple Script Search and PDF Generation Partner400, 2016 Lecture Notes: Page 10 of 16

11 XataFace - Pronounced Zataface Originally developed for use at Simon Fraser Univerisity Faculty of Applied Science Designed for the development of Data Centric Applications Separates the logic from the presentation Inherits relationships, sorting, searching etc. from the database Any fields or relationships added to the database are immediately reflected in the application - often with no additional work Basic Process is: Design the database Optionally decorate the application Done by setting parameters Optionally design the web pages i.e. Modify the templates used The equivalent of the display file DDS Simple Xataface Application This is a simple four table application Customer Orders, Customers, Sales Reps, and Products It uses Xataface's default look-and-feel Sorting, searching, paging, import, export, etc. capabilities are all built in Partner400, 2016 Lecture Notes: Page 11 of 16

12 Structure of a XataFace Application The top level folder JonstestApp contains the application conf.ini contains connection information for the database and identifies the tables to be used index.php is the main driver script - as you will see it is very simple Directory tables contains one directory for each table to be "decorated" More on these files in a moment Source Code conf.ini and index.php ; File: conf.ini ; Description: ; Configuration details including database connection ; and tables to be included in the application. [_database] host = "localhost" user = "dbuser" password = "dbuserpw" name = "sampledb" [_tables] orders = "Customer Orders" orderdetails = "Order Details" customers = "Customers" employees = "Sales Reps" /* File: index.php /* Description: /* First line incorporates the XataFace Library /* Second invokes the display method that sets everything in motion <?php require_once '/Applications/MAMP/htdocs/xataface/dataface-public-api.php'; df_init( FILE, ' Partner400, 2016 Lecture Notes: Page 12 of 16

13 Source Code - fields.ini and valuelists.ini Directory tables contains one directory for each table to be "decorated" My directory customer contains these two files fields.ini provides information about the individual fields valuelists.ini contains the data needed to build pull-down lists etc. This is the only customization I have done - everything else is standard [customernumber] widget:label = "Customer Number" widget:description = "Enter the Customer Number:" [customername] widget:label = "Customer Name" widget:description = "Enter the Customer's Name:" [salesrepemployeenumber] widget:label = "Sales Representative" widget:description = "Enter the Sales Rep's Code:" widget:type=select vocabulary=salesrep [salesrep] sql = "select employeenumber, lastname from employees order by lastname" idatagrid - A New Boy in Town Partner400, 2016 Lecture Notes: Page 13 of 16

14 idatagrid - The Application Wizard WOW - Community Edition Java rather than PHP based Tool is free but no source code supplied If you like it you can grow into the full commercial version - Partner400, 2016 Lecture Notes: Page 14 of 16

15 While on the Subject of Java Based Tools There's a new kid in town! Open Legacy (openlegacy.com) This is a re-facing/ re-purposing tool set Comes complete with a graphical designer for 5250 modernization Also has tooling to assist in building web services etc. I have not yet used the tool It has promise but their web demo programs are a bit "odd" Keep an eye on it though - they are gaining traction Shopping For Free & Low-Cost Software Where to "Shop"? Other than any specific sites mentioned... Hotscripts.com Great place to hunt for utilities, applications, and more Pay attention to the Pepper Ratings and whether the package is regularly updated For PHP tools and articles look to PHP Publications Sitepoint's PHP Master zone (sitepoint.com/php/) - Sitepoint also have great books and classes on all things web Web and PHP Magazine Free download (webandphp.com) Partner400, 2016 Lecture Notes: Page 15 of 16

16 Questions? Comments? Please feel free to contact me: partner400.com? Partner400, 2016 Lecture Notes: Page 16 of 16

Kentico CMS 7.0 User s Guide. User s Guide. Kentico CMS 7.0. 1 www.kentico.com

Kentico CMS 7.0 User s Guide. User s Guide. Kentico CMS 7.0. 1 www.kentico.com User s Guide Kentico CMS 7.0 1 www.kentico.com Table of Contents Introduction... 4 Kentico CMS overview... 4 Signing in... 4 User interface overview... 6 Managing my profile... 8 Changing my e-mail and

More information

Building Data-centric Websites with Dataface. Steve Hannah Faculty of Applied Sciences Simon Fraser University shannah@sfu.ca

Building Data-centric Websites with Dataface. Steve Hannah Faculty of Applied Sciences Simon Fraser University shannah@sfu.ca Building Data-centric Websites with Dataface Steve Hannah Faculty of Applied Sciences Simon Fraser University shannah@sfu.ca What does Data-centric Mean? Centred around the data of the site. Use a database

More information

Bring your intranet to the IBM i With Drupal and Zend Server

Bring your intranet to the IBM i With Drupal and Zend Server Bring your intranet to the IBM i With Drupal and Zend Server Mike Pavlak Solution Consultant mike.p@zend.com Insert->Header 1 & Footer Audience Manager looking for Intranet/place to put stuff Developers

More information

Kentico CMS User s Guide 5.0

Kentico CMS User s Guide 5.0 Kentico CMS User s Guide 5.0 2 Kentico CMS User s Guide 5.0 Table of Contents Part I Introduction 4 1 Kentico CMS overview... 4 2 Signing in... 5 3 User interface overview... 7 Part II Managing my profile

More information

Kentico CMS 5.5 User s Guide

Kentico CMS 5.5 User s Guide Kentico CMS 5.5 User s Guide 2 Kentico CMS User s Guide 5.5 Table of Contents Part I Introduction 4 1 Kentico CMS overview... 4 2 Signing in... 5 3 User interface overview... 7 Part II Managing my profile

More information

Pete Helgren pete@valadd.com. Ruby On Rails on i

Pete Helgren pete@valadd.com. Ruby On Rails on i Pete Helgren pete@valadd.com Ruby On Rails on i Value Added Software, Inc 801.581.1154 18027 Cougar Bluff San Antonio, TX 78258 www.valadd.com www.petesworkshop.com (c) copyright 2014 1 Agenda Primer on

More information

from Microsoft Office

from Microsoft Office OOoCon 2003 Migrating from Microsoft Office to OpenOffice.org/StarOffice by Frank Gamerdinger frank.gamerdinger@sun.com 1 Who needs migration? OpenOffice.org & StarOffice - only the brave!(?) 2 Agenda

More information

About us. Proximity 2015

About us. Proximity 2015 About us Agenda What is open source? PHP for open source PHP on IBM i Live install of Zend Server Live install of Zend DBi What are Zend Server applications? Hands-on install from a.zpk Hands-on install

More information

There are no complicated features to install - just one click of the mouse and the feature you want is automatically installed for you!

There are no complicated features to install - just one click of the mouse and the feature you want is automatically installed for you! extend Control Panel Managing your web hosting account is simplicity itself using Web Host Internet's extend Control Panel 2.0. extend is a Web-based environment that puts you in control of your web hosting

More information

Oracle Application Express MS Access on Steroids

Oracle Application Express MS Access on Steroids Oracle Application Express MS Access on Steroids Jules Lane Principal Consultant Tactical Database Development options Spreadsheets Encourage data duplication and inconsistency, clog

More information

Chapter 28: Expanding Web Studio

Chapter 28: Expanding Web Studio CHAPTER 25 - SAVING WEB SITES TO THE INTERNET Having successfully completed your Web site you are now ready to save (or post, or upload, or ftp) your Web site to the Internet. Web Studio has three ways

More information

Collaborative Open Source with PHP on IBM i

Collaborative Open Source with PHP on IBM i Collaborative Open Source with PHP on IBM i Mike Pavlak Solution Consultant Agenda What s up with MySQL? Mediawiki Installation Configuration Operation Concrete5 Installation Configuration Operation Q&A

More information

2 SQL in iseries Navigator

2 SQL in iseries Navigator 2 SQL in iseries Navigator In V4R4, IBM added an SQL scripting tool to the standard features included within iseries Navigator and has continued enhancing it in subsequent releases. Because standard features

More information

ICCM Reseller Web site Plan Features

ICCM Reseller Web site Plan Features ICCM Reseller Web site Plan Features Reseller Plan Feature list RVSitebuilder Website Builder Addon Cgi Scripts Addon Domain Manager Advanced Guestbook Agora Shopping Cart Analog Stats Email Authentication

More information

Suite. How to Use GrandMaster Suite. Exporting with ODBC

Suite. How to Use GrandMaster Suite. Exporting with ODBC Suite How to Use GrandMaster Suite Exporting with ODBC This page intentionally left blank ODBC Export 3 Table of Contents: HOW TO USE GRANDMASTER SUITE - EXPORTING WITH ODBC...4 OVERVIEW...4 WHAT IS ODBC?...

More information

IBM Unica emessage Version 8 Release 6 February 13, 2015. User's Guide

IBM Unica emessage Version 8 Release 6 February 13, 2015. User's Guide IBM Unica emessage Version 8 Release 6 February 13, 2015 User's Guide Note Before using this information and the product it supports, read the information in Notices on page 403. This edition applies to

More information

Best Practices for Managing Your Public Web Space and Private Work Spaces

Best Practices for Managing Your Public Web Space and Private Work Spaces Best Practices for Managing Your Public Web Space and Private Work Spaces So You re an Administrator to a Committee, Round Table, System User Group or Task Force? This Guide will introduce you to best

More information

Advanced Tornado TWENTYONE. 21.1 Advanced Tornado. 21.2 Accessing MySQL from Python LAB

Advanced Tornado TWENTYONE. 21.1 Advanced Tornado. 21.2 Accessing MySQL from Python LAB 21.1 Advanced Tornado Advanced Tornado One of the main reasons we might want to use a web framework like Tornado is that they hide a lot of the boilerplate stuff that we don t really care about, like escaping

More information

HOW TO CREATE THEME IN MAGENTO 2

HOW TO CREATE THEME IN MAGENTO 2 The Essential Tutorial: HOW TO CREATE THEME IN MAGENTO 2 A publication of Part 1 Whoever you are an extension or theme developer, you should spend time reading this blog post because you ll understand

More information

What s New in Delphi for PHP 2.0. New and Enhanced IDE Features. Form Designer

What s New in Delphi for PHP 2.0. New and Enhanced IDE Features. Form Designer What s New in Delphi for PHP 2.0 Delphi for PHP 2.0 provides a big step forward in functionality and performance. IDE enhancements in the new version enable you to do more and get your work done faster.

More information

AliOffice 2.0 Installation Guide

AliOffice 2.0 Installation Guide January 25, 2012 AliOffice 2.0 Installation Guide Overview This document contains instructions for installing AliOffice and readying the application for the completion and submission of compliance evaluations.

More information

Toad for Data Analysts, Tips n Tricks

Toad for Data Analysts, Tips n Tricks Toad for Data Analysts, Tips n Tricks or Things Everyone Should Know about TDA Just what is Toad for Data Analysts? Toad is a brand at Quest. We have several tools that have been built explicitly for developers

More information

Create a free CRM with Google Apps

Create a free CRM with Google Apps Create a free CRM with Google Apps By Richard Ribuffo Contents Introduction, pg. 2 Part One: Getting Started, pg. 3 Creating Folders, pg. 3 Clients, pg. 4 Part Two: Google Forms, pg. 6 Creating The Form,

More information

SENSE/NET 6.0. Open Source ECMS for the.net platform. www.sensenet.com 1

SENSE/NET 6.0. Open Source ECMS for the.net platform. www.sensenet.com 1 SENSE/NET 6.0 Open Source ECMS for the.net platform www.sensenet.com 1 ABOUT THE PRODUCT: SENSE/NET 6.0 About the product 2 KEY FEATURES Workspaces-based collaboration Document management Office integration

More information

All the materials and/or graphics included in the IceThemetheme folders MUST be used ONLY with It TheCityTheme from IceTheme.com.

All the materials and/or graphics included in the IceThemetheme folders MUST be used ONLY with It TheCityTheme from IceTheme.com. Terms of Use: All the materials and/or graphics included in the IceThemetheme folders MUST be used ONLY with It TheCityTheme from IceTheme.com. Table of Contents 1- Introduction 3 2- Installing the theme

More information

<Insert Picture Here> Michael Hichwa VP Database Development Tools michael.hichwa@oracle.com Stuttgart September 18, 2007 Hamburg September 20, 2007

<Insert Picture Here> Michael Hichwa VP Database Development Tools michael.hichwa@oracle.com Stuttgart September 18, 2007 Hamburg September 20, 2007 Michael Hichwa VP Database Development Tools michael.hichwa@oracle.com Stuttgart September 18, 2007 Hamburg September 20, 2007 Oracle Application Express Introduction Architecture

More information

Quick Reference Guide

Quick Reference Guide Simplified Web Interface for Teachers Quick Reference Guide Online Development Center Site Profile 5 These fields will be pre-populated with your information { 1 2 3 4 Key 1) Website Title: Enter the name

More information

Libraries Workshop Catalog

Libraries Workshop Catalog Libraries Workshop Catalog DrupalEasy library training encompasses a gamut of need-to-know Drupal topics for key library professionals. We pride ourselves on being accessible to libraries anywhere, through

More information

Vector HelpDesk - Administrator s Guide

Vector HelpDesk - Administrator s Guide Vector HelpDesk - Administrator s Guide Vector HelpDesk - Administrator s Guide Configuring and Maintaining Vector HelpDesk version 5.6 Vector HelpDesk - Administrator s Guide Copyright Vector Networks

More information

Linux versus Windows Hosting Plus complete list of features from CompuTech

Linux versus Windows Hosting Plus complete list of features from CompuTech Linux versus Windows Hosting Plus complete list of features from CompuTech Most hosting companies, including CompuTech Computing, will offer you hosting for your website on servers that are running either

More information

Document Freedom Workshop 2012. DFW 2012: CMS, Moodle and Web Publishing

Document Freedom Workshop 2012. DFW 2012: CMS, Moodle and Web Publishing Document Freedom Workshop 2012 CMS, Moodle and Web Publishing Indian Statistical Institute, Kolkata www.jitrc.com (also using CMS: Drupal) Table of contents What is CMS 1 What is CMS About Drupal About

More information

Quick Start Guide. This guide will help you get started with Kentico CMS for ASP.NET. It answers these questions:

Quick Start Guide. This guide will help you get started with Kentico CMS for ASP.NET. It answers these questions: Quick Start Guide This guide will help you get started with Kentico CMS for ASP.NET. It answers these questions:. How can I install Kentico CMS?. How can I edit content? 3. How can I insert an image or

More information

Migration Guide Software, Database and Version Migration

Migration Guide Software, Database and Version Migration Migration Guide Software, Database and Version Migration Release 6.0 February 2012 Yellowfin Release 6.0 Migration Guide Under international copyright laws, neither the documentation nor the software may

More information

Google Analytics Guide

Google Analytics Guide Google Analytics Guide 1 We re excited that you re implementing Google Analytics to help you make the most of your website and convert more visitors. This deck will go through how to create and configure

More information

2015, André Melancia (Andy.PT) 1

2015, André Melancia (Andy.PT) 1 2015, (Andy.PT) 1 "" 1. Requirements For this session you will need a computer with: Windows 7 Professional or higher Office 2007 Professional or higher (Outlook and Access installed) Some of the drivers

More information

Chapter 24: Creating Reports and Extracting Data

Chapter 24: Creating Reports and Extracting Data Chapter 24: Creating Reports and Extracting Data SEER*DMS includes an integrated reporting and extract module to create pre-defined system reports and extracts. Ad hoc listings and extracts can be generated

More information

Microsoft Access 2010 Overview of Basics

Microsoft Access 2010 Overview of Basics Opening Screen Access 2010 launches with a window allowing you to: create a new database from a template; create a new template from scratch; or open an existing database. Open existing Templates Create

More information

Running open source PHP appl icat ions. Part of the PHP on IBM i series

Running open source PHP appl icat ions. Part of the PHP on IBM i series Running open source PHP appl icat ions Part of the PHP on IBM i series Running Open Source PHP applications Pete Samways Why Open Source PHP? Open source software is increasingly gaining acceptance as

More information

Exam Name: IBM InfoSphere MDM Server v9.0

Exam Name: IBM InfoSphere MDM Server v9.0 Vendor: IBM Exam Code: 000-420 Exam Name: IBM InfoSphere MDM Server v9.0 Version: DEMO 1. As part of a maintenance team for an InfoSphere MDM Server implementation, you are investigating the "EndDate must

More information

Logi Ad Hoc Management Console Usage Guide

Logi Ad Hoc Management Console Usage Guide Logi Ad Hoc Management Console Usage Guide Version 11.2 Last Updated: March 2014 Page 2 Table of Contents Introduction... 5 Document Overview... 5 Target Audience... 7 System Requirements... 8 Components...

More information

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code.

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code. Content Introduction... 2 Data Access Server Control Panel... 2 Running the Sample Client Applications... 4 Sample Applications Code... 7 Server Side Objects... 8 Sample Usage of Server Side Objects...

More information

Hive Interview Questions

Hive Interview Questions HADOOPEXAM LEARNING RESOURCES Hive Interview Questions www.hadoopexam.com Please visit www.hadoopexam.com for various resources for BigData/Hadoop/Cassandra/MongoDB/Node.js/Scala etc. 1 Professional Training

More information

IBM i25 Trends & Directions

IBM i25 Trends & Directions Gl. Avernæs 20. November 2013 Erik Rex Cert. Consultant rex@dk.ibm.com Thanks to Steve Will IBM i Chief Architect 2013 IBM Corporation The Family Tree 1975 1988 2013 2013 IBM Corporation 3 2013 IBM Corporation

More information

How to install phpbb forum on NTU student club web server

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

More information

Synthetic Monitoring Scripting Framework. User Guide

Synthetic Monitoring Scripting Framework. User Guide Synthetic Monitoring Scripting Framework User Guide Please direct questions about {Compuware Product} or comments on this document to: APM Customer Support FrontLine Support Login Page: http://go.compuware.com

More information

Kentico CMS 7.0 Intranet Administrator's Guide

Kentico CMS 7.0 Intranet Administrator's Guide Kentico CMS 7.0 Intranet Administrator's Guide 2 Kentico CMS 7.0 Intranet Administrator's Guide Table of Contents Introduction 5... 5 About this guide Getting started 7... 7 Installation... 11 Accessing

More information

Consolidate by Migrating Your Databases to Oracle Database 11g. Fred Louis Enterprise Architect

Consolidate by Migrating Your Databases to Oracle Database 11g. Fred Louis Enterprise Architect Consolidate by Migrating Your Databases to Oracle Database 11g Fred Louis Enterprise Architect Agenda Why migrate to Oracle What is migration? What can you migrate to Oracle? SQL Developer Migration Workbench

More information

Getting Started The Windows SharePoint Services Window

Getting Started The Windows SharePoint Services Window QUICK Source Microsoft Windows SharePoint Services 3.0 for Windows Server 2003 Getting Started The Windows SharePoint Services Window Browser Toolbars - allow the user to navigate in the browser. Link

More information

Google Drive: Access and organize your files

Google Drive: Access and organize your files Google Drive: Access and organize your files Use Google Drive to store and access your files, folders, and Google Docs, Sheets, and Slides anywhere. Change a file on the web, your computer, tablet, or

More information

Drupal + Formulize. A Step-by-Step Guide to Integrating Drupal with XOOPS/ImpressCMS, and installing and using the Formulize module

Drupal + Formulize. A Step-by-Step Guide to Integrating Drupal with XOOPS/ImpressCMS, and installing and using the Formulize module Drupal + Formulize A Step-by-Step Guide to Integrating Drupal with XOOPS/ImpressCMS, and installing and using the Formulize module May 16, 2007 Updated December 23, 2009 This document has been prepared

More information

HELP DESK MANUAL INSTALLATION GUIDE

HELP DESK MANUAL INSTALLATION GUIDE Help Desk 6.5 Manual Installation Guide HELP DESK MANUAL INSTALLATION GUIDE Version 6.5 MS SQL (SQL Server), My SQL, and MS Access Help Desk 6.5 Page 1 Valid as of: 1/15/2008 Help Desk 6.5 Manual Installation

More information

Adam Rauch Partner, LabKey Software adam@labkey.com. Extending LabKey Server Part 1: Retrieving and Presenting Data

Adam Rauch Partner, LabKey Software adam@labkey.com. Extending LabKey Server Part 1: Retrieving and Presenting Data Adam Rauch Partner, LabKey Software adam@labkey.com Extending LabKey Server Part 1: Retrieving and Presenting Data Extending LabKey Server LabKey Server is a large system that combines an extensive set

More information

Eylean server deployment guide

Eylean server deployment guide Eylean server deployment guide Contents 1 Minimum software and hardware requirements... 2 2 Setting up the server using Eylean.Server.Setup.exe wizard... 2 3 Manual setup with Windows authentication -

More information

2/15/2015. Session # 5. Pat Sonnenstuhl OMUG Webmaster. Follow up from our January SIG Questions for Roy? What did you learn?

2/15/2015. Session # 5. Pat Sonnenstuhl OMUG Webmaster. Follow up from our January SIG Questions for Roy? What did you learn? Pat Sonnenstuhl OMUG Webmaster Session # 5 Follow up from our January SIG Questions for Roy? What did you learn? 1 The Guts behind your website: Terms: CMS = Contact Management System PHP = Hypertext Preprocessor

More information

This Readme includes information pertaining to Novell Service Desk 7.0.

This Readme includes information pertaining to Novell Service Desk 7.0. Novell Service Desk 7.0 November 14, 2012 Novell Novell Service Desk is a complete service management solution that allows you to easily monitor and solve services issues so that there is minimal disruption

More information

Microsoft SQL Server is great for storing departmental or company data. It. A Quick Guide to Report Builder - 2013. In association with

Microsoft SQL Server is great for storing departmental or company data. It. A Quick Guide to Report Builder - 2013. In association with In association with A Quick Guide to Report Builder - 2013 Simon Jones explains how to put business information into the hands of your employees thanks to Microsoft SQL Server is great for storing departmental

More information

How To Install & Use Metascan With Policy Patrol

How To Install & Use Metascan With Policy Patrol Policy Patrol 9 technical documentation June 16, 2014 How To Install & Use Metascan With Policy Patrol No antivirus engine is perfect. With over 220,000 new threats emerging daily, it would be impossible

More information

CMS and Internet Marketing

CMS and Internet Marketing CMS and Internet Marketing By Don Parsons DAP@DParsons.com Wish List Setup Website w/ Minimal HTML & Scripting Development Focus on Writing Content Make Adding Content As Easy As Possible Simplify Internet

More information

Walden University s Guide for Information Systems and

Walden University s Guide for Information Systems and Walden University s Guide for Information Systems and Technology Careers Discover Career Opportunities in the Growing Fields of Information Systems and Information Technology Rapid advances in technology

More information

Learning & Teaching with Wikis

Learning & Teaching with Wikis Learning & Teaching with Wikis Introduction to Campus Pack Welcome to Campus Pack within Blackboard. Campus Pack is a tool integrated with Blackboard that enables staff and students to collaborate within

More information

BUILDING WEB JOURNAL DIRECTORY AND ITS ARTICLES WITH DRUPAL

BUILDING WEB JOURNAL DIRECTORY AND ITS ARTICLES WITH DRUPAL BUILDING WEB JOURNAL DIRECTORY AND ITS ARTICLES WITH DRUPAL Suwanto Raharjo Institute Science & Technology AKPRIND, Yogyakarta, Indonesia email: wa2n@akprind.ac.id Abstract The rapid growths of web based

More information

Tivoli Endpoint Manager for Remote Control Version 8 Release 2. User s Guide

Tivoli Endpoint Manager for Remote Control Version 8 Release 2. User s Guide Tivoli Endpoint Manager for Remote Control Version 8 Release 2 User s Guide Tivoli Endpoint Manager for Remote Control Version 8 Release 2 User s Guide Note Before using this information and the product

More information

Orbitz for Business Travel Arranger Guide. Release Date 01/24/14

Orbitz for Business Travel Arranger Guide. Release Date 01/24/14 Orbitz for Business Travel Arranger Guide Release Date 01/24/14 Orbitz for Business, Inc. 500 West Madison Street Suite 1000 Chicago, IL 60661 USA Orbitz for Business, Inc. provides these materials on

More information

Increasing Productivity and Collaboration with Google Docs. Charina Ong Educational Technologist charina.ong@nus.edu.sg

Increasing Productivity and Collaboration with Google Docs. Charina Ong Educational Technologist charina.ong@nus.edu.sg Increasing Productivity and Collaboration with Google Docs charina.ong@nus.edu.sg Table of Contents About the Workshop... i Workshop Objectives... i Session Prerequisites... i Google Apps... 1 Creating

More information

Microsoft SharePoint Products & Technologies

Microsoft SharePoint Products & Technologies Tips & Tricks / SharePoint Page 1 of 2 Microsoft SharePoint Products & Technologies SharePoint Products and Technologies provide you enterprise-scale capabilities to meet businesscritical needs such as

More information

Drupal Training Guide

Drupal Training Guide Drupal Training Guide Getting Started Drupal Information page on the IT site: http://it.santarosa.edu/drupal On this page is information about Drupal sign up, what Drupal is, which is a content management

More information

Delivering Collaborative Application Services as a Hosted Service Offering

Delivering Collaborative Application Services as a Hosted Service Offering Microsoft Communications Sector Partner Solution Case Study Delivering Collaborative Application Services as a Hosted Service Offering Overview Country or Region: United States Industry: Hosting Partner

More information

Results CRM 2012 User Manual

Results CRM 2012 User Manual Results CRM 2012 User Manual A Guide to Using Results CRM Standard, Results CRM Plus, & Results CRM Business Suite Table of Contents Installation Instructions... 1 Single User & Evaluation Installation

More information

HEAT DSM 2015.2 Release Overview. Andreas Fuchs Product Management November 16th, 2015

HEAT DSM 2015.2 Release Overview. Andreas Fuchs Product Management November 16th, 2015 HEAT DSM 2015.2 Release Overview Andreas Fuchs Product Management November 16th, 2015 HEAT DSM 2015.2 Highlights HEAT Discovery Integration Patch Management Enhancements HEAT PatchLink Integration HEAT

More information

Manual pdf-recover Page 2

Manual pdf-recover Page 2 Manual Version 4.0 Welcome... 3 Demo version Online activation... 3 Copyright... 3 Referring to the style... 4 Introduction... 4 Process... 5 Program call-up... 5 Manual mode... 5 Drag and Drop (Windows

More information

Introduction to Open Atrium s workflow

Introduction to Open Atrium s workflow Okay welcome everybody! Thanks for attending the webinar today, my name is Mike Potter and we're going to be doing a demonstration today of some really exciting new features in open atrium 2 for handling

More information

COMBINING FILES IN PDF PORTFOLIOS

COMBINING FILES IN PDF PORTFOLIOS 5 COMBINING FILES IN PDF PORTFOLIOS Lesson Overview In this lesson, you ll learn how to do the following: Quickly and easily combine files of different types into one PDF Portfolio. Customize the look

More information

Elgg 1.8 Social Networking

Elgg 1.8 Social Networking Elgg 1.8 Social Networking Create, customize, and deploy your very networking site with Elgg own social Cash Costello PACKT PUBLISHING open source* community experience distilled - BIRMINGHAM MUMBAI Preface

More information

Advanced Excel Charts : Tables : Pivots : Macros

Advanced Excel Charts : Tables : Pivots : Macros Advanced Excel Charts : Tables : Pivots : Macros Charts In Excel, charts are a great way to visualize your data. However, it is always good to remember some charts are not meant to display particular types

More information

MOBILE DEVELOPMENT WEB DEVELOPMENT BUSINESS PROCESS OPTIMIZATION WEB TECHNOLOGIES МOBILE TECHNOLOGIES SOLUTIONS BASED ON. ios Android Windows

MOBILE DEVELOPMENT WEB DEVELOPMENT BUSINESS PROCESS OPTIMIZATION WEB TECHNOLOGIES МOBILE TECHNOLOGIES SOLUTIONS BASED ON. ios Android Windows MOBILE DEVELOPMENT WEB DEVELOPMENT BUSINESS PROCESS OPTIMIZATION Mobile Apps development for Android, ios, Windows Phone Creation of mobile versions of sites; Mobile adaptation; Pre-setting. МOBILE TECHNOLOGIES

More information

How to Connect to CDL SQL Server Database via Internet

How to Connect to CDL SQL Server Database via Internet How to Connect to CDL SQL Server Database via Internet There are several different methods available for connecting to the CDL SQL Server. Microsoft Windows has built in tools that are very easy to implement

More information

Creating Research Web Sites with Drupal. Randy Carpenter & Steven Akins, May 25, 2010 TSO Brown Bag Course

Creating Research Web Sites with Drupal. Randy Carpenter & Steven Akins, May 25, 2010 TSO Brown Bag Course Creating Research Web Sites with Drupal Randy Carpenter & Steven Akins, May 25, 2010 TSO Brown Bag Course Last Revision: May 24, 2010 Introduction Randy Carpenter, Lead of TSO Research Program Support

More information

Introduction to Pivot Tables in Excel 2003

Introduction to Pivot Tables in Excel 2003 The Company Rocks Introduction to Pivot Tables in Excel 2003 Step-by-step instructions to accompany video lessons Danny Rocks 4/11/2011 Introduction to Pivot Tables in Excel 2003 Pivot Tables are the most

More information

Responsive Design How to get started

Responsive Design How to get started Best Practices Guide Responsive Design How to get started oho.com 617 499 4900 @ohointeractive Website traffic from mobile devices has grown significantly year over year prompting marketers to include

More information

Installation Guide for contineo

Installation Guide for contineo Installation Guide for contineo Sebastian Stein Michael Scholz 2007-02-07, contineo version 2.5 Contents 1 Overview 2 2 Installation 2 2.1 Server and Database....................... 2 2.2 Deployment............................

More information

v7.1 SP2 What s New Guide

v7.1 SP2 What s New Guide v7.1 SP2 What s New Guide Copyright 2012 Sage Technologies Limited, publisher of this work. All rights reserved. No part of this documentation may be copied, photocopied, reproduced, translated, microfilmed,

More information

kalmstrom.com Business Solutions

kalmstrom.com Business Solutions HelpDesk OSP User Manual Content 1 INTRODUCTION... 3 2 REQUIREMENTS... 4 3 THE SHAREPOINT SITE... 4 4 THE HELPDESK OSP TICKET... 5 5 INSTALLATION OF HELPDESK OSP... 7 5.1 INTRODUCTION... 7 5.2 PROCESS...

More information

Product Information. Sugar vs Zoho. Features Comparison

Product Information. Sugar vs Zoho. Features Comparison Product Information vs Zoho Features Comparison CRM Community Price / user / month $0 $35 $45 $60 $100 $0 $12 $25 Price / user / year $0 $420 $540 $720 $1,200 $0 $144 $300 User limits no limit no limit

More information

QualysGuard WAS. Getting Started Guide Version 3.3. March 21, 2014

QualysGuard WAS. Getting Started Guide Version 3.3. March 21, 2014 QualysGuard WAS Getting Started Guide Version 3.3 March 21, 2014 Copyright 2011-2014 by Qualys, Inc. All Rights Reserved. Qualys, the Qualys logo and QualysGuard are registered trademarks of Qualys, Inc.

More information

uilding a Branch Website using Wordpress

uilding a Branch Website using Wordpress Building a branch website using WordPress Building uilding a Branch Website using Wordpress WordPress is a Free and Open Source (FOSS) Content Management System (CMS). It allows you to build websites without

More information

Configuring the Server(s)

Configuring the Server(s) Introduction Configuring the Server(s) IN THIS CHAPTER. Introduction. Overview of Machine Configuration Options. Installing and Configuring FileMaker Server. Testing Your Installation. Hosting Your File.

More information

SECTION 5: Finalizing Your Workbook

SECTION 5: Finalizing Your Workbook SECTION 5: Finalizing Your Workbook In this section you will learn how to: Protect a workbook Protect a sheet Protect Excel files Unlock cells Use the document inspector Use the compatibility checker Mark

More information

Bring your intranet to the IBM i With Drupal and Zend Server

Bring your intranet to the IBM i With Drupal and Zend Server Bring your intranet to the IBM i With Drupal and Zend Server Mike Pavlak Solution Consultant mike.p@zend.com Insert->Header 1 & Footer PHP Sessions Session 1-9:00 Session 2-10:30 11:45 Session 3-12:30

More information

My Oracle Support Portal

My Oracle Support Portal My Oracle Support Portal Fuad Samara Customer Service Manager Global Customer Management The following is intended to outline our general product direction. It is intended for information

More information

WHY CUSTOMERS CHOOSE SUGARCRM OVER SALESFORCE.COM

WHY CUSTOMERS CHOOSE SUGARCRM OVER SALESFORCE.COM WHY CUSTOMERS CHOOSE SUGARCRM OVER SALESFORCE.COM WHY CUSTOMERS CHOOSE SUGARCRM OVER SALESFORCE.COM More and more customers are choosing SugarCRM over Salesforce.com every day. Why? That s because SugarCRM

More information

Google Docs Basics Website: http://etc.usf.edu/te/

Google Docs Basics Website: http://etc.usf.edu/te/ Website: http://etc.usf.edu/te/ Google Docs is a free web-based office suite that allows you to store documents online so you can access them from any computer with an internet connection. With Google

More information

PHP on IBM i: What s New with Zend Server 5 for IBM i

PHP on IBM i: What s New with Zend Server 5 for IBM i PHP on IBM i: What s New with Zend Server 5 for IBM i Mike Pavlak Solutions Consultant mike.p@zend.com (815) 722 3454 Function Junction Audience Used PHP in Zend Core/Platform New to Zend PHP Looking to

More information

Integrations. Help Documentation

Integrations. Help Documentation Help Documentation This document was auto-created from web content and is subject to change at any time. Copyright (c) 2016 SmarterTools Inc. Integrations WHMCS SmarterTrack Provisioning Module Package

More information

Sugar Professional. Approvals + + + + Competitor tracking + + + + Territory management + + + + Third-party sales methodologies + + + +

Sugar Professional. Approvals + + + + Competitor tracking + + + + Territory management + + + + Third-party sales methodologies + + + + Professional Corporate Enterprise Ultimate List price / user / month $35 $45 $60 $100 List price / user / year (contractual term) $420 $540 $720 $1,200 Application or user limits no limits no limits no

More information

Joomla! template Blendvision v 1.0 Customization Manual

Joomla! template Blendvision v 1.0 Customization Manual Joomla! template Blendvision v 1.0 Customization Manual Blendvision template requires Helix II system plugin installed and enabled Download from: http://www.joomshaper.com/joomla-templates/helix-ii Don

More information

Tips & Tricks in Contact Manager. Rebecca Whitehead Director, Product Owners

Tips & Tricks in Contact Manager. Rebecca Whitehead Director, Product Owners Tips & Tricks in Contact Manager Rebecca Whitehead Director, Product Owners Confidential Information The information presented in this session is proprietary and confidential to Campus Management Corp.

More information

imhosted Web Hosting Knowledge Base

imhosted Web Hosting Knowledge Base imhosted Web Hosting Knowledge Base Getting Started Category Contents Getting Started 1 My site loads slowly, what's wrong? 1 My pages aren't being updated when I upload... 2 Creating secure passwords...

More information

CounterPoint SQL and Magento ecommerce Interface

CounterPoint SQL and Magento ecommerce Interface CounterPoint SQL and Magento ecommerce Interface Requirements: CounterPoint SQL: 8.3.9, 8.4.2 Magento Community Edition: 1.5.1+ (older versions are not compatible due to changes in Magento s API) MagentoGo

More information

Microsoft Dynamics CRM 2013 Applications Introduction Training Material Version 2.0

Microsoft Dynamics CRM 2013 Applications Introduction Training Material Version 2.0 Microsoft Dynamics CRM 2013 Applications Introduction Training Material Version 2.0 www.firebrandtraining.com Course content Module 0 Course Content and Plan... 4 Objectives... 4 Course Plan... 4 Course

More information

Meeting Workspace Alternatives

Meeting Workspace Alternatives Meeting Workspace Alternatives Three Solutions for SharePoint and SharePoint Online MARK ECKERT AND EARON SOTTO Contents Introduction... 1 Benefits and Configuration Examples of the Meeting Workspace in

More information