About us. Proximity 2015

Size: px
Start display at page:

Download "About us. Proximity 2015"

Transcription

1

2 About us

3 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 from source Zend Server - A brief tour Configuring Zend Server top tips Q & A

4 Objectives what are yours? What is your experience of open source applications? What is your experience of PHP, MySQL or Zend Server? Would you run an open source application on IBM i for your business? Are you interested in any specific open source applications?

5 Objectives what are ours? An understanding of open source applications on IBM i Implementation of Zend Server and Zend DBi Installation of an open source application of your choice Basic configuration of your open source application An open source application up and running

6 What is open source?

7 Free like a puppy

8 Open source solutions Source code made available for free under license License provides rights to study, change and distribute Core code is free, but expect to pay for anything beyond this Extra features Skins for CMS systems Support Cost of maintaining the software Your time Backups etc.

9 Open source solutions Can use any language or database, but PHP and MySQL is a popular combination PHP and MySQL are available on IBM i

10 Open source solutions We will install the following Zend Server PHP engine, Apache web server Zend DBi MySQL database Apache IBM i MySQL This gives us our iamp stack i = IBM i A = Apache M= MySQL P = PHP PHP Applications

11 PHP on IBM i A great choice for web development Easy to learn, especially for RPG developers PHP itself is open source and free to use Widely used Strong PHP community Extensive resources and tools available Wealth of education materials Runs on IBM i Integrates and works well with existing applications SQL database access, RPG / COBOL / CL program calls No 3 rd party hardware required

12 PHP on IBM i HTTP request HTML, CSS, JS etc. CSS, JavaScript

13 Installing Zend Server

14 Installing Zend Server who are Zend? Founded by Andi Gutmans and Zeev Suraski in 1999 Provides products and services relating to PHP Zend Server Zend DBi Zend Studio Zend Framework

15 Installing Zend Server what is Zend Server? The PHP engine (and not just on IBM i) Complete application server, including web server Brought to IBM i thanks to collaboration between IBM and Zend Basic version is free for IBM i (with forum support) Uses IBM HTTP Server (Apache) Comes complete with XML Toolkit to access native resources

16 Installing Zend Server prerequisites Folder /usr/local exists Ports are available Licensed programs and PTFs appropriate to the OS version are installed Zend Server not already installed I will install on to a clean partition, you can verify it works

17 Installing Zend Server prerequisites For IBM i 6.1 Licensed Program Product Option Description 5761SS1 33 Portable App Solutions Environment 5761SS1 30 Qshell 5761DG1 *BASE IBM HTTP Server for i 5733SC1 *BASE IBM Portable Utilities for i 5733SC1 1 OpenSSH, OpenSSL, zlib Current PTF Group for 5761DG1 (minimum SF99115 Group 13) FastCGI PTFs 5761SS1 SI DG1 SI36027

18 Installing Zend Server prerequisites For IBM i 7.1 Licensed Program Product Option Description 5770SS1 33 Portable App Solutions Environment 5770SS1 30 Qshell 5770DG1 *BASE IBM HTTP Server for i 5733SC1 *BASE IBM Portable Utilities for i 5733SC1 1 OpenSSH, OpenSSL, zlib Current PTF Group for 5770DG1 (minimum SF99368 Group 1)

19 Installing Zend Server prerequisites For IBM i 7.2 Licensed Program Product Option Description 5770SS1 33 Portable App Solutions Environment 5770SS1 30 Qshell 5770DG1 *BASE IBM HTTP Server for i 5733SC1 *BASE IBM Portable Utilities for i 5733SC1 1 OpenSSH, OpenSSL, zlib No additional PTFs required

20 Installing Zend Server installing the software Download the appropriate SAVF from the Zend website, and FTP to the IBM i Choose your installation mode Silent (a.k.a. Batch) Interactive We will choose interactive RSTLICPGM LICPGM(6ZSVRPI) DEV(*SAVF) SAVF(QGPL/ZSVRSAVF6) Skip Zend DBi for now

21 Straw Poll What IBM i version are you running?? Do you have Zend Server installed? Do you have any PHP / web development skills? Is your business using Open Source PHP applications on other platforms? Do you run Zend Server on Windows or Linux?

22 Installing Zend Server completing the installation Zend Server Console Web based UI for configuration and monitoring of Zend Server Navigate to First time in there will be initial configuration to do Accept the license agreement Select the appropriate launch profile Development Production Set the admin and developer user passwords Deploy source libraries

23 Exercise 1

24 Installing Zend Server Validate the installation Navigate to Zend Server Test Page should be displayed Check the subsystem on the IBM i For ease, we will use Presto to provide 5250 access via a browser Navigate to Log in with QSECOFR / Proximity!! GO ZENDSVR6/ZSMENU > 5 > 3 > Enter

25 Installing Zend DBi

26 Installing Zend DBi what is Zend DBi? MySQL binaries, compiled to run on IBM i Functionally identical to MySQL Popular, widely used open source database The database of choice for many open source applications Zend DBi is the IBM i implementation of MySQL, delivered by Zend

27 Installing Zend DBi installing the software Can be done as a second stage of the initial Zend Server installation GO ZENDSVR6/ZSMENU then take option 6 ZendDBi Management menu and installation will start NOTE: QSECOFR privileges are required!

28 Installing Zend DBi verifying the installation A new subsystem and daemon job are created, so check that the subsystem is running WRKACTJOB SBS(ZENDDBI) Can also access the command line interface via QSH or QP2TERM then QSH cd /usr/local/mysql/bin mysql u root > show databases; > use mysql; > show tables;

29 Installing Zend DBi verifying the installation After installation, the root user password should be set > set password for localhost = password( Proximity!! ) > quit To access the command line interface, we now need to enter mysql u root --pass= Proximity!!

30 Exercise 2

31 Installing Zend DBi Verify the installation Navigate to Log in with QSECOFR / Proximity!! GO ZENDSVR6/ZSMENU > 6 > 2 Access the command line interface QSH cd /usr/local/mysql/bin mysql u root --pass= Proximity!! > show databases; > use mysql; > show tables; > select * from user;

32 Zend Server Applications

33 Zend Server applications what are they? Any software that you run using Zend Server Open source applications Packaged, e.g. Magento, Drupal From Source, e.g. MediaWiki, Adminer Your own developed applications STREAM (delivery and transport management) in our case Once an application is configured, you can View statistics and logging information relating to the application Define monitoring rules specific to the application Define caching rules specific to the application

34 Zend Server applications how to define an application Applications are created automatically when you deploy from a package You can also manually define an application for Your manually developed code Other applications installed from source We will cover this in detail shortly

35 Installing from a.zpk

36 Installing an application from a.zpk overview Zend provide a number of pre-packaged Open Source applications that can be installed directly from the Zend Server console Magento e-commerce Drupal content management WordPress content management / blog Joomla content management phpmyadmin database admin tool phpbb forum We have successfully deployed all of these, and use Drupal running on IBM i for all our company websites

37 Installing an application from a.zpk example We use Drupal extensively, so we will us this as an example Access the Zend Server Console > Guide Page > click the Drupal icon

38 Installing an application from a.zpk download

39 Installing an application from a.zpk readme

40 Installing an application from a.zpk app details

41 Installing an application from a.zpk license

42 Installing an application from a.zpk prerequisites

43 Installing an application from a.zpk parameters

44 Installing an Application from a.zpk summary

45 Installing an application from a.zpk manual download Alternative approach, if you already have the.zpk file Access the Zend Server Console Applications > Apps > Deploy Application Specify the location of the.zpk Remaining steps are as before Some config tweaks may be needed to ensure upload does not time out Configurations > PHP > Filesystem and Streams Set default_socket_timeout to e.g. 300 seconds Configurations > PHP > Resource Limits and Tuning Set max_input_time to e.g. 300 seconds

46 Installing an Application from a.zpk under the covers Source is deployed in /usr/local/zendsvr6/var/apps/http/ default /0 A.conf file is generated and saved in /usr/local/zendsvr6/etc/sites.d/http/ default /0 The.conf files are included within the Apache config file Provides the necessary alias information to let Apache locate the application Any staging and activation scripts defined in the package are executed Application config based on the supplied parameters Generation of MySQL database if required

47 Exercise 3

48 Installing an application from a.zpk Access the Zend Server Console Navigate to Log in with admin / Proximity!! Deploy an application Click on the Guide Page tab Click on the application you want to deploy Follow the steps defined on the crib sheet provided for the application Launch the application and have a wander around In the Zend Server Console, check the application specific statistics

49 Installing from source

50 Installing an application from source overview Any application written in PHP that uses MySQL for the database can be implemented on IBM i The examples we will look at today are Adminer database admin tool SugarCRM CRM tool Mantis BT bug tracker Media Wiki wiki We have successfully deployed and use Adminer and SugarCRM on IBM i

51 Installing an application from source archives Typically, source will be provided in a.zip or.tar archive for ease of downloading Both of these types can be unpacked on the IBM i

52 Installing an application from source unpacking.zip files Download the.zip file to the IFS, go into QSH or QP2TERM and enter jar tf <myfilepath> to list the contents of the archive Navigate to the location that you want to extract to and enter jar xf <myfilepath> to extract the contents

53 Installing an application from source unpacking.tar files Download the.tar file to the IFS, go into QSH or QP2TERM and enter tar -tf <myfilepath> to list the contents of the archive Navigate to the location that you want to extract to and enter tar -xf <myfilepath> to extract the contents. If you have a.tar.gz file, extract the.tar file from it before transferring to the server

54 Installing an application from source unpacking.tar files The native tar command can be problematic, as file paths are limited to 100 characters If you get file after unpacking, the path limit has been exceeded and some files will be missing or wrongly named There are two ways to address this The easy approach save the.tar file to the IFS root and unpack, then move to the correct location This will only work if the file paths are now less than 100 characters The hard approach install the Open Source binary for the GNU version of the tar command More information on how to do this is available at

55 Installing an application from source example Adminer is a lightweight MySQL management tool Single script file, so easy to install

56 Installing an application from source create folder

57 Installing an application from source create folder

58 Installing an application from source authority

59 Installing an application from source upload

60 Installing an application from source definition Access the Zend Server Console > Applications > click Define Application

61 Installing an application from source definition

62 Installing an application from source definition

63 Installing an application from source launch

64 Exercise 4

65 Installing an application from source Create a folder within htdocs for the application and set the folder authority Navigate to Log in with QSECOFR / Proximity!! wrklnk '/www/zendsvr6/htdocs/* mkdir /www/zendsvr6/htdocs/<your_folder_name> Take option 9=Work with Authority against the new folder Grant user QHTTPSVR *RWX data and *ALL object authority Upload the source Use FileZilla to transfer the source,.zip or.tar to the new folder

66 Installing an application from source Unpack the source (if necessary) For.zip files In QSH or QP2TERM cd /www/zendsvr6/htdocs/<your_folder_name> jar xf <your_file_name> For.tar files In QSH or QP2TERM cd /www/zendsvr6/htdocs/<your_folder_name> tar xf <your_file_name>

67 Installing an application from source Define the Application within Zend Server Navigate to Log in with admin / Proximity!! Click on the Applications tab Click Define Application Follow the steps defined on the crib sheet provided for the application Launch the application and have a wander around In the Zend Server Console, check the application specific statistics

68 Troubleshooting Most common problems are authority related Try granting QTMHHTTP full authority to the application folder and all contents Check the logs! PHP log in Zend Server console Apache logs in /www/zendsvr6/logs For specific applications refer to user documentation, or Google

69 Zend Server Console

70 Zend Server Console overview dashboard Default landing page when you log into the console Displays overview information for the server Server statistics System events Information can also be filtered per application

71 Zend Server Console applications Lists defined and deployed applications Displays information for individual applications Application status Summary information Provides access to application monitoring and caching rules Provides access to virtual host configuration and PHP library management

72 Zend Server Console configurations Configuration of various aspects of Zend Server Components enable/disable and configure Zend Server Components Deployment required for us! Important for app performance Data Cache, OPCache, Page Cache Important for monitoring Code Tracing, Monitor, Statistics PHP configure installed PHP components Z-Ray fantastic tool for developers more later IDE Integration allows close coupled debugging from Zend Studio Monitor additional configuration for the Zend Monitor component

73 Zend Server Console administration Day-to-day administration of Zend Server Servers allows restart of server and shows any server level errors Audit Trail shows log of changes made to the server Users change passwords for admin and developer users Web API maintenance of Web API keys, used in Zend Studio integration and when accessing the server via its API layer (e.g. from Jenkins or other CI tools) License shows license information Settings server level configuration

74 Zend Server Console Z-Ray Live Developer tool that gives insight into PHP code by delivering detailed information into a browser component Information includes PHP functions SQL queries Request variables Errors and warnings Server events Memory usage Z-Ray Live allows this data to be viewed for requests from devices where browser component is not appropriate, e.g. mobile applications, API calls

75 Configuring Zend Server

76 Configuring Zend Server top tips As seen on PowerWire.eu Character Set Configuration Multibyte Support Compression Bonus Tip! Memory Pools and Run Priorities Available on our website:

77 Configuring Zend Server character sets Get this right now and you ll never have character set problems In /www/zendsvr6/conf/httpd.conf DefaultFsCCSID CGIJobCCSID DefaultNetCCSID AddCharset UTF-8.htm.html.xml In /www/zendsvr6/conf/fastcgi.conf SetEnv= CCSID=1208 SetEnv= LANG=C

78 Configuring Zend Server character sets In /usr/local/zendsvr6/share/toolkitapi/toolkit.ini encoding = UTF-8 In the console, go to Configurations > PHP > ibm_db2 ibm_db2.i5_dbcs_alloc set to use expanded allocations

79 Configuring Zend Server multibyte support Means you re not limited to ASCII In the console, go to Configurations > PHP > mbstring mbstring.http_output set to UTF-8 mbstring.internal_encoding set to UTF-8 mbstring.encoding_translation set to On mbstring.http_input set to Pass mbstring.language set to neutral

80 Configuring Zend Server compression A very quick win speeds up response times of web pages In /www/zendsvr6/conf/httpd.conf LoadModule deflate_module /QSYS.LIB/QHTTPSVR.LIB/QZSRCORE.SRVPGM AddOutputFilterByType DEFLATE application/x-httpd-php application/json text/css application/x-javascript application/javascript text/html

81 Configuring Zend Server memory pools and run priorities Worth considering for Production systems where resources are shared with legacy applications Use WRKSHRPOOL to define one of the shared pools as Zend Use CHGSBSD to allocate the pool to subsystem ZENDSVR6 Change the Zend Server Class using WRKCLS ZENDSVR6/*ALL to set Run Priority to 20, equivalent to interactive jobs Change the HTTP Server Class using WRKCLS QHTTPSVR/QZHBHTTP to set Run Priority to 20, equivalent to interactive jobs

82 Any questions?

83 Thanks i-ug for the opportunity Steve Bradshaw for the hardware and support You for attending

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

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

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

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

GoAnywhere Director to GoAnywhere MFT Upgrade Guide. Version: 5.0.1 Publication Date: 07/09/2015

GoAnywhere Director to GoAnywhere MFT Upgrade Guide. Version: 5.0.1 Publication Date: 07/09/2015 GoAnywhere Director to GoAnywhere MFT Upgrade Guide Version: 5.0.1 Publication Date: 07/09/2015 Copyright 2015 Linoma Software. All rights reserved. Information in this document is subject to change without

More information

Upgrade Guide. Product Version: 4.7.0 Publication Date: 02/11/2015

Upgrade Guide. Product Version: 4.7.0 Publication Date: 02/11/2015 Upgrade Guide Product Version: 4.7.0 Publication Date: 02/11/2015 Copyright 2009-2015, LINOMA SOFTWARE LINOMA SOFTWARE is a division of LINOMA GROUP, Inc. Contents Welcome 3 Before You Begin 3 Upgrade

More information

MySQL for IBM i Or Zend DBi == MySQL!

MySQL for IBM i Or Zend DBi == MySQL! MySQL for IBM i Or Zend DBi == MySQL! Mike Pavlak Solutions Consultant mike.p@zend.com (815) 722 3454 Function Junction All rights reserved. Zend Technologies, Inc. Agenda What is MySQL Install Access

More information

MySQL Quick Start Guide

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

More information

E-Commerce: Designing And Creating An Online Store

E-Commerce: Designing And Creating An Online Store E-Commerce: Designing And Creating An Online Store Introduction About Steve Green Ministries Solo Performance Artist for 19 Years. Released over 26 Records, Several Kids Movies, and Books. My History With

More information

MySQL quick start guide

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

More information

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008.

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008. Znode Multifront - Installation Guide Version 6.2 1 System Requirements To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server

More information

MOODLE Installation on Windows Platform

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

More information

Embedded Based Web Server for CMS and Automation System

Embedded Based Web Server for CMS and Automation System Embedded Based Web Server for CMS and Automation System ISSN: 2278 909X All Rights Reserved 2014 IJARECE 1073 ABSTRACT This research deals with designing a Embedded Based Web Server for CMS and Automation

More information

MySQL Quick Start Guide

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

More information

TAO Installation Guide v0.1. September 2012

TAO Installation Guide v0.1. September 2012 TAO Installation Guide v0.1 September 2012 TAO installation guide v0.1 page 2/22 This installation guide provides instructions for installing TAO. For all other aspects of using TAO, please see the user

More information

Zend Server 4.0 Beta 2 Release Announcement What s new in Zend Server 4.0 Beta 2 Updates and Improvements Resolved Issues Installation Issues

Zend Server 4.0 Beta 2 Release Announcement What s new in Zend Server 4.0 Beta 2 Updates and Improvements Resolved Issues Installation Issues Zend Server 4.0 Beta 2 Release Announcement Thank you for your participation in the Zend Server 4.0 beta program. Your involvement will help us ensure we best address your needs and deliver even higher

More information

Content Management System

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

More information

Installation, Configuration, and Usage

Installation, Configuration, and Usage Installation, Configuration, and Usage Copyright Free Lunch Labs www.freelunchlabs.com Installation BEFORE INSTALLING THIS EXTENSION CREATE OF BACKUP OF YOUR MAGENTO INSTALLATION AND ALL ASSOCISTED FILES

More information

Speed up your web site. Alan Seiden Consulting alanseiden.com

Speed up your web site. Alan Seiden Consulting alanseiden.com alanseiden.com Alan s PHP on IBM i focus Consultant to innovative IBM i and PHP users PHP project leader, Zend/IBM Toolkit Contributor, Zend Framework DB2 enhancements Award-winning developer Authority,

More information

User Guide Zend Server Community 4.0.3

User Guide Zend Server Community 4.0.3 User Guide Zend Server Community 4.0.3 By Zend Technologies www.zend.com Table of Contents Abstract... 1 Password Management... 1 Support... 2 Zend Support Center... 2 Administration Interface... 3 General

More information

Web Performance First Aid. Alan Seiden Consulting alanseiden.com

Web Performance First Aid. Alan Seiden Consulting alanseiden.com alanseiden.com My focus Advancing PHP on IBM i PHP project leader, Zend/IBM Toolkit Contributor, Zend Framework DB2/i enhancements Developer, Best Web Solution, IBM/Common Authority, subsecond web performance

More information

SETTING UP A LAMP SERVER REMOTELY

SETTING UP A LAMP SERVER REMOTELY SETTING UP A LAMP SERVER REMOTELY It s been said a million times over Linux is awesome on servers! With over 60 per cent of the Web s servers gunning away on the mighty penguin, the robust, resilient,

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 Jeff Olen Solution Consultant mike.p@zend.com Insert->Header 1 & Footer PHP Sessions Session

More information

Oracle Managed File Getting Started - Transfer FTP Server to File Table of Contents

Oracle Managed File Getting Started - Transfer FTP Server to File Table of Contents Oracle Managed File Getting Started - Transfer FTP Server to File Table of Contents Goals... 3 High- Level Steps... 4 Basic FTP to File with Compression... 4 Steps in Detail... 4 MFT Console: Login and

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

ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved

ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved 1 1. Update Before you start updating, please refer to 2. Important changes to check if there are any additional instructions

More information

GoAnywhere MFT Upgrade Guide. Version: 5.0.4 Publication Date: 08/12/2015

GoAnywhere MFT Upgrade Guide. Version: 5.0.4 Publication Date: 08/12/2015 GoAnywhere MFT Upgrade Guide Version: 5.0.4 Publication Date: 08/12/2015 Copyright 2015 Linoma Software. All rights reserved. Information in this document is subject to change without notice. The software

More information

XCloner Official User Manual

XCloner Official User Manual XCloner Official User Manual Copyright 2010 XCloner.com www.xcloner.com All rights reserved. xcloner.com is not affiliated with or endorsed by Open Source Matters or the Joomla! Project. What is XCloner?

More information

Lesson 7 - Website Administration

Lesson 7 - Website Administration Lesson 7 - Website Administration If you are hired as a web designer, your client will most likely expect you do more than just create their website. They will expect you to also know how to get their

More information

Shop by Manufacturer Custom Module for Magento

Shop by Manufacturer Custom Module for Magento Shop by Manufacturer Custom Module for Magento TABLE OF CONTENTS Table of Contents Table Of Contents... 2 1. INTRODUCTION... 3 2. Overview...3 3. Requirements... 3 4. Features... 4 4.1 Features accessible

More information

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

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

More information

AS/400e. TCP/IP Services and Applications Webserver(HTTP)

AS/400e. TCP/IP Services and Applications Webserver(HTTP) AS/400e TCP/IP Services and Applications Webserver(HTTP) AS/400e TCP/IP Services and Applications Webserver(HTTP) Copyright International Business Machines Corporation 1998, 2000. All rights reserved.

More information

TIBCO Spotfire Metrics Prerequisites and Installation

TIBCO Spotfire Metrics Prerequisites and Installation TIBCO Spotfire Metrics Prerequisites and Installation Software Release 6.0 November 2013 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF

More information

System i Access for Web Configuring an Integrated Web Application Server Instance

System i Access for Web Configuring an Integrated Web Application Server Instance System i Access for Web Configuring an Integrated Web Application Server Instance Third Edition (August 2013) This edition supplements the 6.1 System i Access for Web Information Center documentation.

More information

Tutorial: Packaging your server build

Tutorial: Packaging your server build Tutorial: Packaging your server build This tutorial walks you through the steps to prepare a game server folder or package containing all the files necessary for your game server to run in Amazon GameLift.

More information

FlexSim LAN License Server

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

More information

How to Install MediaWiki on Windows Server 2003

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

More information

VERSION 9.02 INSTALLATION GUIDE. www.pacifictimesheet.com

VERSION 9.02 INSTALLATION GUIDE. www.pacifictimesheet.com VERSION 9.02 INSTALLATION GUIDE www.pacifictimesheet.com PACIFIC TIMESHEET INSTALLATION GUIDE INTRODUCTION... 4 BUNDLED SOFTWARE... 4 LICENSE KEY... 4 SYSTEM REQUIREMENTS... 5 INSTALLING PACIFIC TIMESHEET

More information

Workshop on Using Open Source Content Management System Drupal to build Library Websites Hasina Afroz Auninda Rumy Saleque

Workshop on Using Open Source Content Management System Drupal to build Library Websites Hasina Afroz Auninda Rumy Saleque Workshop on Using Open Source Content Management System Drupal to build Library Websites Hasina Afroz Auninda Rumy Saleque Funded by: INASP, UK October 7, 2012 Ayesha Abed Library http://library.bracu.ac.bd

More information

PHP in the Enterprise

PHP in the Enterprise PHP in the Enterprise Mike Pavlak Solutions Consultant mike.p@zend.com Function Junction Agenda Market analysis Evolution of PHP and IBM i PHP stacks up today PHP in the IBM i Enterprise Development Community

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

OxyClassifieds Installation Handbook

OxyClassifieds Installation Handbook OxyClassifieds Installation Handbook OxyClassifieds Team Email: office@oxyclassifieds.com Web: http://www.oxyclassifieds.com OxyClassifieds Installation Handbook by OxyClassifieds Team Copyright 2006-2011

More information

Installation Instructions

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

More information

Easy Setup Guide 1&1 CLOUD SERVER. Creating Backups. for Linux

Easy Setup Guide 1&1 CLOUD SERVER. Creating Backups. for Linux Easy Setup Guide 1&1 CLOUD SERVER Creating Backups for Linux Legal notice 1&1 Internet Inc. 701 Lee Road, Suite 300 Chesterbrook, PA 19087 USA www.1and1.com info@1and1.com August 2015 Copyright 2015 1&1

More information

Lets Get Started In this tutorial, I will be migrating a Drupal CMS using FTP. The steps should be relatively similar for any other website.

Lets Get Started In this tutorial, I will be migrating a Drupal CMS using FTP. The steps should be relatively similar for any other website. This tutorial will show you how to migrate your website using FTP. The majority of websites are just files, and you can move these using a process called FTP (File Transfer Protocol). The first thing this

More information

Team Foundation Server 2013 Installation Guide

Team Foundation Server 2013 Installation Guide Team Foundation Server 2013 Installation Guide Page 1 of 164 Team Foundation Server 2013 Installation Guide Benjamin Day benday@benday.com v1.1.0 May 28, 2014 Team Foundation Server 2013 Installation Guide

More information

MarkLogic Server. Installation Guide for All Platforms. MarkLogic 8 February, 2015. Copyright 2015 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Installation Guide for All Platforms. MarkLogic 8 February, 2015. Copyright 2015 MarkLogic Corporation. All rights reserved. Installation Guide for All Platforms 1 MarkLogic 8 February, 2015 Last Revised: 8.0-4, November, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Installation

More information

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

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

More information

Compiere ERP & CRM Installation Instructions Windows System - EnterpriseDB

Compiere ERP & CRM Installation Instructions Windows System - EnterpriseDB Compiere ERP & CRM Installation Instructions Windows System - EnterpriseDB Compiere Learning Services Division Copyright 2007 Compiere, inc. All rights reserved www.compiere.com Table of Contents Compiere

More information

Build it with Drupal 8

Build it with Drupal 8 Build it with Drupal 8 Comprehensive guide for building common websites in Drupal 8. No programming knowledge required! Antonio Torres This book is for sale at http://leanpub.com/drupal-8-book This version

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

Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.2 Web Applications Deployed on BEA WebLogic Server 9.2

Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.2 Web Applications Deployed on BEA WebLogic Server 9.2 Configuration Guide Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.2 Web Applications Deployed on BEA WebLogic Server 9.2 This document describes how to configure Apache HTTP Server

More information

Installation Guide. MashZone. Version 9.6

Installation Guide. MashZone. Version 9.6 MashZone Version 9.6 February 2014 This document applies to PPM from version 9.6. Specifications contained herein are subject to change and these changes will be reported in subsequent release notes or

More information

Open Source Content Management System JOOMLA

Open Source Content Management System JOOMLA Open Source Content Management System JOOMLA Swapnil S. Chafale MCA Department, GHRIIT Nagpur, (M.S.),India Swapnil.chafale@gmail.com Dr.V.M. Thakare S.G.B. Amravati University, Amravati (M.S.),India vilthakare@yahoo.co.in

More information

RecoveryVault Express Client User Manual

RecoveryVault Express Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

More information

Mercury Users Guide Version 1.3 February 14, 2006

Mercury Users Guide Version 1.3 February 14, 2006 Mercury Users Guide Version 1.3 February 14, 2006 1 Introduction Introducing Mercury Your corporate shipping has just become easier! The satisfaction of your customers depends on the accuracy of your shipments,

More information

Cloudwords Drupal Module. Quick Start Guide

Cloudwords Drupal Module. Quick Start Guide Cloudwords Drupal Module Quick Start Guide 1 Contents INTRO... 3 HOW IT WORKS... 3 BEFORE YOU INSTALL... 4 In Cloudwords... 4 In Drupal... 4 INSTALLING THE CLOUDWORDS DRUPAL MODULE... 5 OPTION ONE: Install

More information

Software Development & Education Center PHP 5

Software Development & Education Center PHP 5 Software Development & Education Center PHP 5 (ADVANCE) Detailed Curriculum Advance PHP JQuery Basics Of JQuery Including the JQuery Library Code in an HTML Page JQuery Utilities Faster, Simpler, More

More information

Installing Drupal on Your Local Computer

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

More information

Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c

Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c This document describes how to set up Oracle Enterprise Manager 12c to monitor

More information

The easy way to a nice looking website design. By a total non-designer (Me!)

The easy way to a nice looking website design. By a total non-designer (Me!) The easy way to a nice looking website design By a total non-designer (Me!) Website Refresher Three types of Website 1.Hand rolled HTML. Lightweight static pages. 2.Scripted Website. (PHP, ASP.NET etc.)

More information

Apache web server magic on IBM i. Alan Seiden Consulting alanseiden.com

Apache web server magic on IBM i. Alan Seiden Consulting alanseiden.com Apache web server magic on IBM i alanseiden.com Alan s PHP on IBM i focus Consultant to innovative IBM i and PHP users PHP project leader, Zend/IBM Toolkit Contributor, Zend Framework DB2 enhancements

More information

Customer Control Panel Manual

Customer Control Panel Manual Customer Control Panel Manual Contents Introduction... 2 Before you begin... 2 Logging in to the Control Panel... 2 Resetting your Control Panel password.... 3 Managing FTP... 4 FTP details for your website...

More information

Online Backup Client User Manual

Online Backup Client User Manual Online Backup Client User Manual Software version 3.21 For Linux distributions January 2011 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have

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

WordPress Security Scan Configuration

WordPress Security Scan Configuration WordPress Security Scan Configuration To configure the - WordPress Security Scan - plugin in your WordPress driven Blog, login to WordPress as administrator, by simply entering the url_of_your_website/wp-admin

More information

Administering Jive for Outlook

Administering Jive for Outlook Administering Jive for Outlook TOC 2 Contents Administering Jive for Outlook...3 System Requirements...3 Installing the Plugin... 3 Installing the Plugin... 3 Client Installation... 4 Resetting the Binaries...4

More information

1. Product Information

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

More information

vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide

vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide This document supports the version of each product listed and supports all subsequent versions until a new edition replaces

More information

i2b2 Installation Guide

i2b2 Installation Guide Informatics for Integrating Biology and the Bedside i2b2 Installation Guide i2b2 Server and Clients Document Version: 1.7.00-003 Document Management Revision Number Date Author Comment 1.7.00-001 03/06/2014

More information

Online Backup Linux Client User Manual

Online Backup Linux Client User Manual Online Backup Linux Client User Manual Software version 4.0.x For Linux distributions August 2011 Version 1.0 Disclaimer This document is compiled with the greatest possible care. However, errors might

More information

Online Backup Client User Manual Linux

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

More information

X-POS GUIDE. v3.4 INSTALLATION. 2015 SmartOSC and X-POS

X-POS GUIDE. v3.4 INSTALLATION. 2015 SmartOSC and X-POS GUIDE INSTALLATION X-POS v3.4 2015 SmartOSC and X-POS 1. Prerequisites for Installing and Upgrading Server has Apache/PHP 5.2.x/MySQL installed. Magento Community version 1.7.x or above already installed

More information

Installation and Administration Guide

Installation and Administration Guide Installation and Administration Guide Product Version: 2.5.0 Publication date: 7/21/2011 Copyright 2008-2011, LINOMA SOFTWARE LINOMA SOFTWARE is a division of LINOMA GROUP, Inc. Table of Contents Introduction...

More information

Online Backup Client User Manual

Online Backup Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

More information

Recommended File System Ownership and Privileges

Recommended File System Ownership and Privileges FOR MAGENTO COMMUNITY EDITION Whenever a patch is released to fix an issue in the code, a notice is sent directly to your Admin Inbox. If the update is security related, the incoming message is colorcoded

More information

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

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

More information

Building job sites with Joomla!

Building job sites with Joomla! Building job sites with Joomla! Santonu Kumar Dhar Chapter No. 1 "Installing and Configuring Joomla! 1.5 and Jobs! Pro 1.3.2" In this package, you will find: A Biography of the author of the book A preview

More information

5 Mistakes to Avoid on Your Drupal Website

5 Mistakes to Avoid on Your Drupal Website 5 Mistakes to Avoid on Your Drupal Website Table of Contents Introduction.... 3 Architecture: Content.... 4 Architecture: Display... 5 Architecture: Site or Functionality.... 6 Security.... 8 Performance...

More information

ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved

ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved 1 1. Update Before you start updating, please refer to 2. Important changes to check if there are any additional instructions

More information

Compiere ERP & CRM Installation Instructions Linux System - EnterpriseDB

Compiere ERP & CRM Installation Instructions Linux System - EnterpriseDB Compiere ERP & CRM Installation Instructions Linux System - EnterpriseDB Compiere Learning Services Division Copyright 2007 Compiere, inc. All rights reserved www.compiere.com Table of Contents Compiere

More information

TECHNICAL DOCUMENTATION SPECOPS DEPLOY / APP 4.7 DOCUMENTATION

TECHNICAL DOCUMENTATION SPECOPS DEPLOY / APP 4.7 DOCUMENTATION TECHNICAL DOCUMENTATION SPECOPS DEPLOY / APP 4.7 DOCUMENTATION Contents 1. Getting Started... 4 1.1 Specops Deploy Supported Configurations... 4 2. Specops Deploy and Active Directory...5 3. Specops Deploy

More information

FileMaker Server 12. Getting Started Guide

FileMaker Server 12. Getting Started Guide FileMaker Server 12 Getting Started Guide 2007 2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker,

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information

Site Store Pro. INSTALLATION GUIDE WPCartPro Wordpress Plugin Version

Site Store Pro. INSTALLATION GUIDE WPCartPro Wordpress Plugin Version Site Store Pro INSTALLATION GUIDE WPCartPro Wordpress Plugin Version WPCARTPRO INTRODUCTION 2 SYSTEM REQUIREMENTS 4 DOWNLOAD YOUR WPCARTPRO VERSION 5 EXTRACT THE FOLDERS FROM THE ZIP FILE TO A DIRECTORY

More information

IBM WebSphere Application Server Version 7.0

IBM WebSphere Application Server Version 7.0 IBM WebSphere Application Server Version 7.0 Centralized Installation Manager for IBM WebSphere Application Server Network Deployment Version 7.0 Note: Before using this information, be sure to read the

More information

SugarCRM CE (Community Edition Only) Plugin. Installation. Guide

SugarCRM CE (Community Edition Only) Plugin. Installation. Guide SugarCRM CE (Community Edition Only) Plugin Installation Guide Version 2.0 By Lim Tee Chert 23 June 2012 (last updated on: 08 January 2015) Purpose: This is for SugarCRM CE (Community Edition Only) plugin

More information

Creating Value through Innovation MAGENTO 1.X TO MAGENTO 2.0 MIGRATION

Creating Value through Innovation MAGENTO 1.X TO MAGENTO 2.0 MIGRATION Creating Value through Innovation MAGENTO 1.X TO MAGENTO 2.0 MIGRATION AGENDA 1. Overview of Magento 2.0 2. Features and benefits of Magento 2.0 over Magento 1.x 3. Why should we upgrade to Magento 2.0

More information

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL SOS Online Backup USER MANUAL HOW TO INSTALL THE SOFTWARE 1. Download the software from the website: http://www.sosonlinebackup.com/download_the_software.htm 2. Click Run to install when promoted, or alternatively,

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

Deploying Intellicus Portal on IBM WebSphere

Deploying Intellicus Portal on IBM WebSphere Deploying Intellicus Portal on IBM WebSphere Intellicus Web-based Reporting Suite Version 4.5 Enterprise Professional Smart Developer Smart Viewer Intellicus Technologies info@intellicus.com www.intellicus.com

More information

FileMaker Server 14. FileMaker Server Help

FileMaker Server 14. FileMaker Server Help FileMaker Server 14 FileMaker Server Help 2007 2015 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks

More information

Compiere 3.2 Installation Instructions Windows System - Oracle Database

Compiere 3.2 Installation Instructions Windows System - Oracle Database Compiere 3.2 Installation Instructions Windows System - Oracle Database Compiere Learning Services Division Copyright 2008 Compiere, inc. All rights reserved www.compiere.com Table of Contents Compiere

More information

PHP and MySQL on IBM i New Stacks and New Solutions

PHP and MySQL on IBM i New Stacks and New Solutions PHP and MySQL on IBM i New Stacks and New Solutions Erwin Earley (erwin.earley@us.ibm.com) IBM i Technology Center Open Community Technologies Center of Competency 8 Copyright IBM Corporation, 2009. All

More information

Install guide for Websphere 7.0

Install guide for Websphere 7.0 DOCUMENTATION Install guide for Websphere 7.0 Jahia EE v6.6.1.0 Jahia s next-generation, open source CMS stems from a widely acknowledged vision of enterprise application convergence web, document, search,

More information

Backup and Restore MySQL Databases

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

More information

Configuring Sun StorageTek SL500 tape library for Amanda Enterprise backup software

Configuring Sun StorageTek SL500 tape library for Amanda Enterprise backup software Configuring Sun StorageTek SL500 tape library for Amanda Enterprise backup software Zmanda Inc. October 2009 Table of Contents Introduction... 4... 5 Sun StorageTek SL 500TM... 5 SL 500 Configuration...

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

MAGENTO Migration Tools

MAGENTO Migration Tools MAGENTO Migration Tools User Guide Copyright 2014 LitExtension.com. All Rights Reserved. Magento Migration Tools: User Guide Page 1 Content 1. Preparation... 3 2. Setup... 5 3. Plugins Setup... 7 4. Migration

More information

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows)

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows) Introduction EASYLABEL 6 has several new features for saving the history of label formats. This history can include information about when label formats were edited and printed. In order to save this history,

More information