Open Catalog Interface (OCI) for VirtueMart

Size: px
Start display at page:

Download "Open Catalog Interface (OCI) for VirtueMart"

Transcription

1 Ver Open Catalog Interface (OCI) for VirtueMart tested with Joomla 2.5 and Virtuemart b Ing. Karl Hirzberger

2 Table of Contents Term declaration... 3 OCI for VirtueMart... 4 Installation... 4 Autologin... 5 Administrator... 5 Frontend... 6 Calling kh_autologin... 6 Test mode... 6 Vmoci... 7 Administrator... 7 Frontend... 8 Test mode... 8 Customizing... 9 What means customizing within kh_vmoci... 9 The standard template... 9 Where are the templates... 9 Edit a template Which fields in the template are available Templates to users Create Custom Unit Field What s new Version Custom unit field for product unit Default template Info for developers and translators License GNU General Public License Page 2 of 18

3 Term declaration The Open Catalog Interface (OCI) is the interface between catalogs and SAP Business-to- Business Procurement. SAP s Open Catalog Interface uses standard Internet protocols. It has already been implemented between several catalog applications and SAP Business-to-Business Procurement. VirtueMart is an Open Source E-Commerce solution to be used together with a Content Management System (CMS) called Joomla!. Joomla and VirtueMart are written in PHP and can be used in typical PHP/MySQL environments. Page 3 of 18

4 OCI for VirtueMart It contains two plugins.. Kh_autologin for automatic login. Kh_vmoci for sending data. Important: Vmoci stores date in the session-object. You have to set the session timeout in Joomla-configuration long enough. Installation Install and activate the Plugins kh_autologin and kh_vmoci. Page 4 of 18

5 Autologin Administrator Parameter Description Values Url redirect Which page should be invoked Empty after login? Any page from Joomla: e.g. Index.php Password How to send the login data unencrypted encrypted SAP standard is unencrypted Debug Debug mode no yes Only for testing Page 5 of 18

6 Frontend Calling kh_autologin Parameter Description Values URL Url of the own Page index.php must be specified Username Username USER user USERNAME username SAP standard is USERNAME Password Password passw PASSW password PASSWORD Hook_Url Url to which the order data will be sent. Is passed from the calling system and stored in the session. Make sure that the session time is large enough. SAP standard is PASSWORD hook_url HOOK_URL SAP standard is HOOK_URL The parameter and parameter names have to be posted to the customer. Example: USERNAME PASSWORD HOOK_URL Name of user Password Will be created by the system Test mode If you call the catalog with HOOK_URL=test, then the OCI-data will be shown. URL: MyShop/index.php?USERNAME=xxx&PASSWORD=xxx&HOOK_URL=test Page 6 of 18

7 Vmoci Vmoci sends the order data to the Hook_url. Important: Vmoci injects Code in the thankyou-page from VirtueMart. Therefore, the ordering process has to end with the thankyou-page of VirtueMart. With basic knowledge of PHP you can determine the fields and the format for transmit. You can define for each user their own template (reformulated) Please read the section Customizing. Administrator Parameter Description Values Automatic If YES: transfers data without clicking Yes transfer the send button. No Time Time in milliseconds before the data Milliseconds will be transferred automatically. Use own unit Use own field for product unit. Yes No Name of own Name of the field, that holds own Name of the field user field product unit. Default Default template Name of the template template Debug Debug mode No Yes Only for testing Page 7 of 18

8 Frontend The OCI will be shown in the thankyou page of Virtuemart. If automatic sending is no, the user have to click the send button. Test mode When HOOK_URL has the value test, the "reflector for testing forms" shows the order data. Page 8 of 18

9 Customizing What means customizing within kh_vmoci With a template, you can determine which data the OCI sends. With simple PHP functions you can also determine the format of data. The standard template The standard template is default.tpl.php. Where are the templates MyJoomlaInstallation/plugins/system/kh_vmoci/template/xxxxx.tpl.php Edit a template. New best way since Version Copy default.tpl.php and name it as you like. Insert the name in the options of the plugin kh_vmoci. Edit your new default template. This way will guarantee that your template will not be overwritten in case of updating kh_vmoci. <form id="kh_vmocisendform" action=" <?php echo $hook_url?>" method="post" target="_top"> standard parameter <input type="hidden" name="~okcode" value="addi" /> <input type="hidden" name="~target" value="_top" /> <input type="hidden" name="~caller" value="ctlg" /> <?php $counter = 1; foreach( $rows as $row ) {?> In the foreach construct, you can determine the data for each product of the order. E.g. <input type="hidden" name="new_item-description[<?php echo $counter?>]" value="<?php echo substr($row->order_item_name,0,40)?>" /> <input type="hidden" name="new_item-quantity[<?php echo $counter?>]" value="<?php echo number_format($row->product_quantity, 3, '.', '')?>" /> <input type="hidden" name=new_item-unit[<?php echo $counter?>]" value="<?php echo substr($row->product_unit,0,3)?>" /> <input type="hidden" name="new_item-price[<?php echo $counter?>]" value="<?php echo number_format($row->product_item_price, 3, '.', '')?>" /> <input type="hidden" name="new_item-priceunit[<?php echo $counter?>]" value="1" /> <input type="hidden" name="new_item-currency[<?php echo $counter?>]" value="<?php echo $row->order_item_currency?>" /> More data.. <?php $counter++;?> <?php } //end for?> <input type="button" class="button" value="<?php echo $button_text?>" id=kh_submitoci name=kh_submitoci onclick="kh_vmocisendform()"> Page 9 of 18

10 </form> Make sure that you use the corrrect format of decimal point. SAP R3 seems to use always the american format ("."). SAP ByD seems to use the local format; (".") for ameriacan and (",") for european. Because i know, that the administrator of each installation can set the parameters in SAP, you have to inform about by the admin Page 10 of 18

11 Which fields in the template are available /* here are all fields // from order $row->order_id; $row->vendor_id; $row->product_id; $row->order_item_sku; $row->order_item_name; $row->product_quantity; New since $row->product_item_price; //per Unit $row->product_tax //per Position $row->product_basepricewithtax // per Unit $row->product_subtotal_discount //per Postion $row->product_final_price; // per Unit $row->order_item_currency; $row->order_status; $row->order_item_cdate; $row->order_item_mdate; $row->product_attribute; //from product language-file $row->product_s_desc; $row->product_desc; //from product $row->product_weight; $row->product_weight_uom; $row->product_length; $row->product_width; $row->product_height; $row->product_lwh_uom; $row->product_url; $row->product_available_date; $row->product_tax_id; $row->product_unit; $row->product_packaging; */ $user_currency Because in some installions of VM, product_currency is empty I sent user_currency to the template. User_currency holds the value of the user currency that is stored in the order. Use it as you see below. <input type="hidden" name="new_item-currency[<?php echo $counter?>]" value="<?php echo!empty($row->order_item_currency)? $row->order_item_currency : $user_currency?>" /> $row->custom_unit Holds the value of the field, that you set in Name of the field, that holds own product unit Use it as you see below. Page 11 of 18

12 <input type="hidden" name="new_item-unit[<?php echo $counter?>]" value="<?php echo!empty($row->custom_unit)? substr($row->custom_unit,0,3) : substr($row->product_unit,0,3)?>" /> If the field use own unit is set to No, then $row->custom_unit is always empty and so the product unit is used. In the other case (use own unit = Yes) we will send custom_unit if its not empty. Page 12 of 18

13 Templates to users!! Only necessary if different customers want different transmitted data. Otherwise simply edit your default template.!! If necessary, you can specify a template for each user. If no template is specified, kh_vmoci uses default.tpl.php. To assign a template to a user, the following steps have to be executed. 1. In VirtueMart -> Configuration-> Shopper Fields insert a new field with the name kh_oci.!! Attention!! There is a bug in VM! a. The new field will be inserted with index 0. If you delete the field (e.g. wrong name) and insert an a new field, then you have two fields with index 0. At worst, you have to correct the index in the database table jos_vm_userfield in the column ordering. Page 13 of 18

14 2. Insert new users in VirtueMart -> Ordes & Shoppers -> Shoppers -> Additional Information and write the name of the template without extensions into the field kh_oci (e.g. mytemplate). Page 14 of 18

15 Create Custom Unit Field 1. In Virtuemart -> Products -> Custom Fields insert a new custom field. Page 15 of 18

16 2. In Product insert the custom field and write the ISO-unit in the field 3. Don t forget to insert the name of the custom field in the options of kh_vmoci Page 16 of 18

17 What s new Version Custom unit field for product unit VM has changed the input of the product unit from free text field to dropdownbox with few options. And so we can t input ISO units to the products. But SAP (especially SAP ByD) needs ISO units. No, we can make a hack in the core of VM to insert ISO or we can use a custom field. I mean, that a custom field is a better way, because the hack is gone in case of updating VM. So I extended kh_vmoci in a way, that you can use a custom field for ISO unit. Default template Now you can define your own default template in the settings of kh_vmoci. This template will not be overwritten in case of update. Info for developers and translators. Because there were troubles with other extensions, I changed the name of the variables in the language files. Each variable holds now the name of the plugin. E.g. USER_FIELD_LABEL is named now KH_VMOCI_USERFIELD_LABEL Page 17 of 18

18 Authors Karl Hirzberger (developer) Dorin Marmeliuc (SAP ByD) Anonymus (SAP R3) License GNU General Public License Page 18 of 18

DATA SHEET Setup Tutorial

DATA SHEET Setup Tutorial NetDirector Password Manager Getting Started To begin setting up your account first go to http://www.netdirector.biz:10002/passwordmanager On the main screen there will be a link don t have an account?

More information

DNNSmart Super Store User Manual

DNNSmart Super Store User Manual DNNSmart Super Store User Manual Description This is one simple but useful e-commerce module. It consists of multiple submodules which can help you setup your DNN E-commerce sites quickly. It's very easy

More information

Manual for CKForms component Release 1.3.4

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

More information

OpenGlobal WorldPay Recurring Payments (FuturePay) for VirtueMart

OpenGlobal WorldPay Recurring Payments (FuturePay) for VirtueMart OpenGlobal WorldPay Recurring Payments (FuturePay) for VirtueMart Instruction Manual Introduction This VirtueMart 2.x/3.x payment plugin allows VirtueMart payment transactions to be conducted using the

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

Joomla! E-Commerce with VirtueMart

Joomla! E-Commerce with VirtueMart Joomla! E-Commerce with VirtueMart Suhreed Sarkar Chapter No. 5 "Managing Customers and Orders" In this package, you will find: A Biography of the author of the book A preview chapter from the book, Chapter

More information

CPAY MERCHANT INTEGRATION SPECIFICATION

CPAY MERCHANT INTEGRATION SPECIFICATION CPAY MERCHANT INTEGRATION SPECIFICATION 1 CONTENTS Using this specification... 3 Purpose... 3 Audience... 3 Introduction... 4 Payment Process... 5 Payment Parameters... 6 Technical Details... 8 Communication

More information

PayPal Integration Instructions

PayPal Integration Instructions PayPal Integration Instructions Table of Contents Overview... 1 Option 1: Adding a Shopping Cart... 1 How to enable PayPal in Virtuemart... 2 Option 2: Adding a PayPal Button to your Joomla Website...

More information

1: 2: 2.1. 2.2. 3: 3.1: 3.2: 4: 5: 5.1 5.2 & 5.3 5.4 5.5 5.6 5.7 5.8 CAPTCHA

1: 2: 2.1. 2.2. 3: 3.1: 3.2: 4: 5: 5.1 5.2 & 5.3 5.4 5.5 5.6 5.7 5.8 CAPTCHA Step by step guide Step 1: Purchasing a RSMembership! membership Step 2: Download RSMembership! 2.1. Download the component 2.2. Download RSMembership! language files Step 3: Installing RSMembership! 3.1:

More information

5.2.3 Thank you message 5.3 - Bounce email settings Step 6: Subscribers 6.1. Creating subscriber lists 6.2. Add subscribers 6.2.1 Manual add 6.2.

5.2.3 Thank you message 5.3 - Bounce email settings Step 6: Subscribers 6.1. Creating subscriber lists 6.2. Add subscribers 6.2.1 Manual add 6.2. Step by step guide Step 1: Purchasing an RSMail! membership Step 2: Download RSMail! 2.1. Download the component 2.2. Download RSMail! language files Step 3: Installing RSMail! 3.1: Installing the component

More information

Module Private Sales User Manual

Module Private Sales User Manual Module Private Sales User Manual 1 / 11 Summary Summary Overview... 3 Installation... 4 Upload files... 4 Settings... 4 User account... 5 General... 5 Invitations... 6 Abreviations... 6 Display slider...

More information

Flexible Virtuemart 2 Template CleanMart (for VM2.0.x only) TUTORIAL. INSTALLATION CleanMart VM 2 Template (in 3 steps):

Flexible Virtuemart 2 Template CleanMart (for VM2.0.x only) TUTORIAL. INSTALLATION CleanMart VM 2 Template (in 3 steps): // Flexible Virtuemart VM2 Template CleanMart FOR VIRTUEMART 2.0.x (ONLY) // version 1.0 // author Flexible Web Design Team // copyright (C) 2011- flexiblewebdesign.com // license GNU/GPLv3 http://www.gnu.org/licenses/gpl-

More information

HOW TO USE THE ACCESS CODE. Adding Members to Your Group Using the Access Code

HOW TO USE THE ACCESS CODE. Adding Members to Your Group Using the Access Code HOW TO USE THE ACCESS CODE Adding Members to Your Group Using the Access Code New group members (your personnel) may be added to your group by any of these options: - Manually, using either the Add Members

More information

HDVideoShare! User Documentation Team January 31. 2012

HDVideoShare! User Documentation Team January 31. 2012 Version 2.3 HDVideoShare! User Documentation Team January 31. 2012 2010 Copyrights and all rights reserved by Contus Support Interactive Pvt. Ltd., TABLE OF CONTENTS Welcome to you as a new user of this

More information

Product Name: ANZ egate Connect Version: 2.1.9 Document Type: Help doc Author: Milople Inc.

Product Name: ANZ egate Connect Version: 2.1.9 Document Type: Help doc Author: Milople Inc. Product Name: ANZ egate Connect Version: 2.1.9 Document Type: Help doc Author: Milople Inc. https://www.milople.com/magento-extensions/anz-egate-connect.html Table of Content 1. Installation and Un-installation

More information

Zapper for ecommerce. Magento Plugin Version 1.0.0. Checkout

Zapper for ecommerce. Magento Plugin Version 1.0.0. Checkout Zapper for ecommerce Magento Plugin Version 1.0.0 Branden Paine 4/14/2014 Table of Contents Introduction... 1 What is Zapper for ecommerce? Why Use It?... 1 What is Zapper?... 1 Zapper App Features...

More information

Please note that a username and password will be made available upon request. These are necessary to transfer files.

Please note that a username and password will be made available upon request. These are necessary to transfer files. Transferring Data Using Secure File Transfer Process ASU Center for Health Information and Research (CHiR) data partners can now securely electronically send their data submissions by means of Secure File

More information

Your complete guide to installing the info@hand Self-Service Portal and estore.

Your complete guide to installing the info@hand Self-Service Portal and estore. Your complete guide to installing the info@hand Self-Service Portal and estore. Install the Portal & estore as shrink-wrapped software, or as add-ons to an existing Joomla! installation. Then configure

More information

Policies and Procedures for creating and maintaining a site

Policies and Procedures for creating and maintaining a site Policies and Procedures for creating and maintaining a site In order to create an account for your chapter or state web management, you must be the president of that chapter or state. Once you have chosen

More information

INUVIKA OPEN VIRTUAL DESKTOP ENTERPRISE

INUVIKA OPEN VIRTUAL DESKTOP ENTERPRISE INUVIKA OPEN VIRTUAL DESKTOP ENTERPRISE SAML 2.0 CONFIGURATION GUIDE Roy Heaton David Pham-Van Version 1.1 Published March 23, 2015 This document describes how to configure OVD to use SAML 2.0 for user

More information

Canonical. Plugin for Joomla! This manual documents version 3.11.x of the Joomla! extension. http://www.aimy-extensions.com/joomla/canonical.

Canonical. Plugin for Joomla! This manual documents version 3.11.x of the Joomla! extension. http://www.aimy-extensions.com/joomla/canonical. Canonical Plugin for Joomla! This manual documents version 3.11.x of the Joomla! extension. http://www.aimy-extensions.com/joomla/canonical.html 1 Introduction The Joomla! plugin Aimy Canonical allows

More information

Document From MAXIMUM BUSINESS INFORMATION TECHNOLOGY ON A. OwnCloud User Manual. TO I Cafe`

Document From MAXIMUM BUSINESS INFORMATION TECHNOLOGY ON A. OwnCloud User Manual. TO I Cafe` Document From MAXIMUM BUSINESS INFORMATION TECHNOLOGY ON A OwnCloud User Manual TO I Cafe` DATED 20 Sep 2014 User Manual Guid For Owncloud I. Accessing the owncloud Web Interface To access the owncloud

More information

E-Commerce Installation and Configuration Guide

E-Commerce Installation and Configuration Guide E-Commerce Installation and Configuration Guide Rev: 2011-05-19 Sitecore E-Commerce Fundamental Edition 1.1 E-Commerce Installation and Configuration Guide A developer's guide to installing and configuring

More information

Magento Integration Manual (Version 2.1.0-11/24/2014)

Magento Integration Manual (Version 2.1.0-11/24/2014) Magento Integration Manual (Version 2.1.0-11/24/2014) Copyright Notice The software that this user documentation manual refers to, contains proprietary content of Megaventory Inc. and Magento (an ebay

More information

Creating and Modifying PVAAS Accounts for Your School District

Creating and Modifying PVAAS Accounts for Your School District District Admin Account Holder Has full access to all reports for the district level and below (ex: access to all district, school, and student reports) Has the ability to create the following types of

More information

Create e-commerce website Opencart. Prepared by : Reth Chantharoth Facebook : https://www.facebook.com/tharothchan.ubee E-mail : rtharoth@yahoo.

Create e-commerce website Opencart. Prepared by : Reth Chantharoth Facebook : https://www.facebook.com/tharothchan.ubee E-mail : rtharoth@yahoo. Create e-commerce website Opencart Prepared by : Reth Chantharoth Facebook : https://www.facebook.com/tharothchan.ubee E-mail : rtharoth@yahoo.com Create e-commerce website Opencart What is opencart? Opencart

More information

Web Work Module 11.6. User s Guide

Web Work Module 11.6. User s Guide Web Work Module 11.6 User s Guide COPYRIGHT Copyright 2000 2005 MainSaver Software. All rights reserved. No part of this document may be copied or distributed, transmitted, transcribed, stored in a retrieval

More information

Portal User Guide. Customers. Version 1.1. May 2013 http://www.sharedband.com 1 of 5

Portal User Guide. Customers. Version 1.1. May 2013 http://www.sharedband.com 1 of 5 Portal User Guide Customers Version 1.1 May 2013 http://www.sharedband.com 1 of 5 Table of Contents Introduction... 3 Using the Sharedband Portal... 4 Login... 4 Request password reset... 4 View accounts...

More information

JTouch Mobile Extension for Joomla! User Guide

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

More information

Purolator Eship Web Services

Purolator Eship Web Services Head Office; #1100 128 Pender St W, Vancouver, BC V6B 1R8 P: 604.336.1444 W: collinsharper.com 26-Mar-14 Purolator Eship Web Services Shipping Module Contents Configuration of Purolator... 2 Measure Units

More information

How do I share a file with a friend or trusted associate?

How do I share a file with a friend or trusted associate? Sharing Information How do I share a file with a friend or trusted associate? Sharing a file in InformationSAFE is easy. The share utility in InformationSAFE allows you to securely share your information

More information

OpenCart. SugarCRM CE (Community Edition Only) Integration. Guide

OpenCart. SugarCRM CE (Community Edition Only) Integration. Guide OpenCart SugarCRM CE (Community Edition Only) Integration Guide By Lim Tee Chert 23 June 2012 (last updated on: 08 January 2015) http://www.cartbooks.com Purpose: This is A Release for OpenCart SugarCRM

More information

shweclassifieds v 3.3 Php Classifieds Script (Joomla Extension) User Manual (Revision 2.0)

shweclassifieds v 3.3 Php Classifieds Script (Joomla Extension) User Manual (Revision 2.0) shweclassifieds v 3.3 Php Classifieds Script (Joomla Extension) User Manual (Revision 2.0) Contents Installation Procedure... 4 What is in the zip file?... 4 Installing from Extension Manager... 6 Updating

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

Using your content management system EXPRESSIONENGINE CMS DOCUMENTATION UKONS

Using your content management system EXPRESSIONENGINE CMS DOCUMENTATION UKONS Using your content management system EXPRESSIONENGINE CMS DOCUMENTATION UKONS JOHN MOYLAN UKONS EXPRESSIONENGINE DOCUMENTATION 2 What is ExpressionEngine? ExpressionEngine is a flexible, feature-rich content

More information

Vtiger CRM Outlook Plugin Documentation

Vtiger CRM Outlook Plugin Documentation Vtiger CRM Outlook Plugin Documentation Outlook Plugin Version 1.0.04 Different Solutions GmbH support@different-solutions.com http://www.different-solutions.com Support Forum: http://forum.vtiger.de Date:

More information

Flexible Virtuemart 2 Template PureMart (for VM2.0.x only) TUTORIAL. INSTALLATION PureMart VM 2 Template (in 3 steps):

Flexible Virtuemart 2 Template PureMart (for VM2.0.x only) TUTORIAL. INSTALLATION PureMart VM 2 Template (in 3 steps): // Flexible Virtuemart VM2 Template PureMart FOR VIRTUEMART 2.0.x (ONLY) // version 1.0 // author Flexible Web Design Team // copyright (C) 2011- flexiblewebdesign.com // license GNU/GPLv3 http://www.gnu.org/licenses/gpl-

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

OpenCart AliExpress Affiliate Plugin User Guide

OpenCart AliExpress Affiliate Plugin User Guide OpenCart AliExpress Affiliate Plugin User Guide By TC 30 April 2015 (last updated on: 15 Oct 2015) http://www.aliwebstore.com Purpose: The purpose of this Opencart AliExpress Affiliate Plugin is to provide

More information

Stripe Payment Module Magento 2 USER MANUAL MAGEDELIGHT.COM SUPPORT E: SUPPORT@MAGEDELIGHT.COM P: +1-(248)-275-1202

Stripe Payment Module Magento 2 USER MANUAL MAGEDELIGHT.COM SUPPORT E: SUPPORT@MAGEDELIGHT.COM P: +1-(248)-275-1202 Stripe Payment Module Magento 2 USER MANUAL MAGEDELIGHT.COM SUPPORT E: SUPPORT@MAGEDELIGHT.COM P: +1-(248)-275-1202 License Key After successful installation of Stripe Payment extension by using the Magento

More information

VirtueMart 1.1 User Manual. Sören Eberhardt-Biermann

VirtueMart 1.1 User Manual. Sören Eberhardt-Biermann VirtueMart 1.1 User Manual Sören Eberhardt-Biermann VirtueMart 1.1 User Manual Sören Eberhardt-Biermann Russel Walker www.netshinesoftware.com [http://www.netshinesoftware.com/] $Date: 2008-08-02 22:53:47

More information

Editing your Website User Guide

Editing your Website User Guide User Guide Adding content to your Website To add or replace content on your website you will need to log in to your Content Management System (Joomla) using your username and password. If you do not already

More information

NYS OCFS CMS Manual CHAPTER 1...1-1 CHAPTER 2...2-1 CHAPTER 3...3-1 CHAPTER 4...4-1. Contract Management System

NYS OCFS CMS Manual CHAPTER 1...1-1 CHAPTER 2...2-1 CHAPTER 3...3-1 CHAPTER 4...4-1. Contract Management System NYS OCFS CMS Manual C O N T E N T S CHAPTER 1...1-1 Chapter 1: Introduction to the Contract Management System...1-2 Using the Contract Management System... 1-2 Accessing the Contract Management System...

More information

Multi Currency Module Hosted Ecommerce Service Module Help Document

Multi Currency Module Hosted Ecommerce Service Module Help Document Multi Currency Module Hosted Ecommerce Service Module Help Document This module is installed on all stores by default under all hosting plans of hosted e-commerce service as available at ecommercehosted.com

More information

SEO Toolkit Magento Extension User Guide Official extension page: SEO Toolkit

SEO Toolkit Magento Extension User Guide Official extension page: SEO Toolkit SEO Toolkit Magento Extension User Guide Official extension page: SEO Toolkit Page 1 Table of contents: 1. SEO Toolkit: General Settings..3 2. Product Reviews: Settings...4 3. Product Reviews: Examples......5

More information

Active Directory Self-Service FAQ

Active Directory Self-Service FAQ Active Directory Self-Service FAQ General Information: info@cionsystems.com Online Support: support@cionsystems.com CionSystems Inc. Mailing Address: 16625 Redmond Way, Ste M106 Redmond, WA. 98052 http://www.cionsystems.com

More information

KEGEL S PRODUCE ONLINE ORDERING USER GUIDE MARCH 2015 ONLINE ORDERING GUIDE FOR

KEGEL S PRODUCE ONLINE ORDERING USER GUIDE MARCH 2015 ONLINE ORDERING GUIDE FOR KEGEL S PRODUCE ONLINE ORDERING USER GUIDE MARCH 2015 ONLINE ORDERING GUIDE FOR USERNAME PASSWORD To get to the main E-Commerce login page, follow the login instructions from the Kegel's Produce site OR

More information

Facebook - Twitter - Google +1 all in one plugin for Joomla enable "Twitter button", "Google +1

Facebook - Twitter - Google +1 all in one plugin for Joomla enable Twitter button, Google +1 Facebook - Twitter - Google +1 all in one plugin for Joomla enable "Twitter button", "Google +1 button ", Facebook " Like button ", the Facebook " Share This button ", the Facebook " Comment Box ", the

More information

Computer Department. User Guide for Iscar E-Commerce site (TOOLSHOP) 1. Introducing. 2. Registration/login. 3. Start purchasing. 4.

Computer Department. User Guide for Iscar E-Commerce site (TOOLSHOP) 1. Introducing. 2. Registration/login. 3. Start purchasing. 4. User Guide for Iscar E-Commerce site (TOOLSHOP) Title 1. Introducing 2. Registration/login 3. Start purchasing 4. Purchasing steps 5. Submitting the order 6. Order confirmation 7. Order status 8. Distributors

More information

CHARGE Anywhere Universal Shopping Cart

CHARGE Anywhere Universal Shopping Cart CHARGE Anywhere Universal Shopping Cart Version: v1.0.1 Prepared for: CHARGE Anywhere 4041B Hadley Rd South Plainfield, NJ 07080 Phone: + 1 (800)211-1256 Fax: + 1 (732) 417-4448 I. Introduction... 3 II.

More information

MyanPay API Integration with Magento CMS

MyanPay API Integration with Magento CMS 2014 MyanPay API Integration with Magento CMS MyanPay Myanmar Soft Gate Technology Co, Ltd. 1/1/2014 MyanPay API Integration with Magento CMS 1 MyanPay API Integration with Magento CMS MyanPay API Generating

More information

HIPAA Compliance Use Case

HIPAA Compliance Use Case Overview HIPAA Compliance helps ensure that all medical records, medical billing, and patient accounts meet certain consistent standards with regard to documentation, handling, and privacy. Current Situation

More information

Apparo Fast Edit. Excel data import via email 1 / 19

Apparo Fast Edit. Excel data import via email 1 / 19 Apparo Fast Edit Excel data import via email 1 / 19 1 2 3 4 5 Definition 3 Benefits at a glance 3 Example 4 3.1 Use Case 4 3.2 How users experience this feature 4 Email ImportBusiness Case 6 4.1 Creating

More information

This installation guide will help you install your chosen IceTheme Template with the Cloner Installer package.

This installation guide will help you install your chosen IceTheme Template with the Cloner Installer package. Introduction This installation guide will help you install your chosen IceTheme Template with the Cloner Installer package. There are 2 ways of installing the theme: 1- Using the Clone Installer Package

More information

Chapter Website Management Instructions

Chapter Website Management Instructions Chapter Website Management Instructions This document will provide step-by-step instructions to manage and update your new chapter website. Please review this prior to updating your chapter site once you

More information

Contents. Summary. Site Address. Account Management MISSOURI DEPARTMENT OF INSURANCE, FINANCIAL INSTITUTIONS AND PROFESSIONAL REGISTRATION

Contents. Summary. Site Address. Account Management MISSOURI DEPARTMENT OF INSURANCE, FINANCIAL INSTITUTIONS AND PROFESSIONAL REGISTRATION Contents Summary... 1 Site Address... 1 Account Management... 1 Account Registration... 2 Registration Process... 2 Contact Information Updates... 2 Reporting... 3 Product Liability Form... 4 Product Liability

More information

Scritto da Administrator Martedì 05 Aprile 2011 13:23 - Ultimo aggiornamento Giovedì 15 Ottobre 2015 02:19

Scritto da Administrator Martedì 05 Aprile 2011 13:23 - Ultimo aggiornamento Giovedì 15 Ottobre 2015 02:19 Facebook Like And Share Joomla Plugin enable Facebook "Like button", the "Share This button ", and the " Comment Box " on your published articles, with the following features: - To choose the position

More information

Setup Guide for Magento and BlueSnap

Setup Guide for Magento and BlueSnap Setup Guide for Magento and BlueSnap This manual is meant to show you how to connect your Magento store with your newly created BlueSnap account. It will show step-by-step instructions. For any further

More information

Magento module Documentation

Magento module Documentation Table of contents 1 General... 4 1.1 Languages... 4 2 Installation... 4 2.1 Search module... 4 2.2 Installation in Magento... 6 2.3 Installation as a local package... 7 2.4 Uninstalling the module... 8

More information

After many years we are happy to create a new social plugin with a great potential.

After many years we are happy to create a new social plugin with a great potential. After many years we are happy to create a new social plugin with a great potential. The Compago Social Share is created for Joomla 3.1 and it will let you share your contents on the most used social network:

More information

TriCore Secure Web Email Gateway User Guide 1

TriCore Secure Web Email Gateway User Guide 1 TriCore Secure Web Email Gateway User Guide This document provides information about TriCore Secure Web Email Gateway. This document is for users who are authorized to send and receive encrypted email

More information

Virtual Communities Operations Manual

Virtual Communities Operations Manual Virtual Communities Operations Manual The Chapter Virtual Communities (VC) have been developed to improve communication among chapter leaders and members, to facilitate networking and communication among

More information

CMS and e-commerce Solutions. version 1.0. Please, visit us at: http://www.itoris.com or contact directly by email: sales@itoris.

CMS and e-commerce Solutions. version 1.0. Please, visit us at: http://www.itoris.com or contact directly by email: sales@itoris. Help Desk for Magento User Guide version 1.0 created by IToris IToris Table of contents 1. Introduction... 3 1.1. Purpose... 3 2. Installation and License... 3 2.1. System Requirements... 3 2.2. Installation...

More information

HKBN Wi-Fi Service User Guide

HKBN Wi-Fi Service User Guide HKBN Wi-Fi Service User Guide Content 1. Device Requirements 2. Login Procedures and Auto Login Settings 3. Forget Username / Password 4. Manage Your Auto Login Setting at HKBN Website 5. Technical Support

More information

LiveBox Manual WEB USER. http://www.liveboxcloud.com

LiveBox Manual WEB USER. http://www.liveboxcloud.com 2015 LiveBox Manual WEB USER http://www.liveboxcloud.com Index 1. USER LOGIN... 2 1.1 LOGIN LIVEBOX... 2 1.2 RESET PIN... 3 1.3 RECOVERY PRIVATE KEY... 3 1.4 CURRENT PIN RECOVERY... 4 2. MENU... 5 2.1

More information

USC Aiken CMS Manual. A manual on using the basic functions of the dotcms system. Office of Marketing and Community Relations-USC Aiken

USC Aiken CMS Manual. A manual on using the basic functions of the dotcms system. Office of Marketing and Community Relations-USC Aiken USC Aiken CMS Manual A manual on using the basic functions of the dotcms system Office of Marketing and Community Relations-USC Aiken Table Of Contents Introduction/How to Use Manual... 2 Logging In...

More information

Configuring Sponsor Authentication

Configuring Sponsor Authentication CHAPTER 4 Sponsors are the people who use Cisco NAC Guest Server to create guest accounts. Sponsor authentication authenticates sponsor users to the Sponsor interface of the Guest Server. There are five

More information

Agile ICT Website Starter Guides

Agile ICT Website Starter Guides Agile ICT Website Guide V1.0 1 Agile ICT Website Starter Guides 2 The purpose of this guide is to show you how to edit some of the basics of the website you have purchased through Agile ICT. The website

More information

GJC Web Design Virtuemart 2.0 Product Product Review Package v1.4

GJC Web Design Virtuemart 2.0 Product Product Review Package v1.4 GJC Web Design Virtuemart 2.0 Product Product Review Package v1.4 This is the VirtueMart 2.0 Product Review Package. Installs as a native Joomla Package. You can download it here - Download Price is 40.00

More information

GoodWe Online Monitoring System Introduction

GoodWe Online Monitoring System Introduction GoodWe Online Monitoring System Introduction This document briefs the basic function module of GoodWe Online Monitoring System. We hope it can help to understand the system easily and use it flexibly and

More information

SIMGallery. User Documentation

SIMGallery. User Documentation SIMGallery Joomla Component Joomla Modules Joomla/CB Plugin For Joomla and Community Builder / JomSocial http://www.joomla.org http://www.joomlapolis.com http://www.jomsocial.com User Documentation Product

More information

HowTo. Planning table online

HowTo. Planning table online HowTo Project: Description: Planning table online Installation Version: 1.0 Date: 04.09.2008 Short description: With this document you will get information how to install the online planning table on your

More information

Plugin Integration Guide

Plugin Integration Guide Plugin Integration Guide Revision History Version Date Changed By Comments/Reason 1.0 16/09/14 NZB Created 1.01 01/10/ This document describes the implementation requirements for the mobicred Magento Plugin,

More information

This short guide will teach you how to turn your newly installed Joomla 2.5 site into a basic three page website.

This short guide will teach you how to turn your newly installed Joomla 2.5 site into a basic three page website. This short guide will teach you how to turn your newly installed Joomla 2.5 site into a basic three page website. The pages will be Home, About Us & Contact Us. It will also explain how you can tidy up

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

MOBILE ALERT MONITORING SERVICE TUTORIAL

MOBILE ALERT MONITORING SERVICE TUTORIAL INITIAL LOGIN 1. Enter http://www.westernwx.com/weatherdb/ 2. Login with assigned username and password. 3. Click on the Weather Database link under the Latest Weather Data section of your home page. 4.

More information

Using the Portal and Direct Messaging HOW TO SETUP AND USE PORTAL AND DIRECT MESSAGING FUNCTIONALITY STARTING IN VERSION 7

Using the Portal and Direct Messaging HOW TO SETUP AND USE PORTAL AND DIRECT MESSAGING FUNCTIONALITY STARTING IN VERSION 7 Using the Portal and Direct Messaging HOW TO SETUP AND USE PORTAL AND DIRECT MESSAGING FUNCTIONALITY STARTING IN VERSION 7 Set up your practice and user accounts Are you an existing Updox user? No Did

More information

Contents. 1. Infrastructure

Contents. 1. Infrastructure 1. Infrastructure 2. Configuration Contents a. Join the Web Server to the Domain Controller b. Install PHP, mysql, apache c. Install and configure wordpress and virtual host d. Install and configure moodle

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

Charter Business Phone. Online Control Panel Getting Started Guide. Document Version 1.0

Charter Business Phone. Online Control Panel Getting Started Guide. Document Version 1.0 Charter Business Phone Online Control Panel Getting Started Guide Document Version 1.0 Table of Contents 1 About This Guide...4 2 Overview...5 2.1 Online Control Panel and Call Manager... 5 3 Manual and

More information

Adyen Magento extension

Adyen Magento extension Adyen Magento extension User manual Date: Apr 22, 2014 Filename: Adyen Magento Extension V2.0.0.odt Version: 2.0.0 Reference: Adyen Magento Extension V2.0.0 Adyen Magento extension - manual Version control

More information

PRINT FLEET MANAGER USER MANUAL

PRINT FLEET MANAGER USER MANUAL PRINT FLEET MANAGER USER MANUAL 1 Disclaimer of warranties and limitation of liabilities ( YES ) reserves all rights in the program as delivered. The program or any portion thereof may not be reproduced

More information

INSTALLATION AND SETUP HANDBOOK OF PAYU LATAM s PLUGIN FOR WOOCOMMERCE

INSTALLATION AND SETUP HANDBOOK OF PAYU LATAM s PLUGIN FOR WOOCOMMERCE INSTALLATION AND SETUP HANDBOOK OF PAYU LATAM s PLUGIN FOR Woocommerce is a Wordpress plugin that facilitates the creation of an online store integrated to the current site. So that your customers can

More information

Case Study. [Solaire System]

Case Study. [Solaire System] Case Study [Solaire System] INDEX Project Description... 2 Objective... 4 Challenges... 4 Solution... 4 Client Testimony... 5 Project Description One of our Canada based client wants us to develop Soalire

More information

Gravity Forms: Creating a Form

Gravity Forms: Creating a Form Gravity Forms: Creating a Form 1. To create a Gravity Form, you must be logged in as an Administrator. This is accomplished by going to http://your_url/wp- login.php. 2. On the login screen, enter your

More information

SQL Server Setup for Assistant/Pro applications Compliance Information Systems

SQL Server Setup for Assistant/Pro applications Compliance Information Systems SQL Server Setup for Assistant/Pro applications Compliance Information Systems The following document covers the process of setting up the SQL Server databases for the Assistant/PRO software products form

More information

IIS, FTP Server and Windows

IIS, FTP Server and Windows IIS, FTP Server and Windows The Objective: To setup, configure and test FTP server. Requirement: Any version of the Windows 2000 Server. FTP Windows s component. Internet Information Services, IIS. Steps:

More information

How to Run a What-If Report

How to Run a What-If Report Description: The What-If Advisement Report can be used to create advisement results for a program/plan other than your declared program/plan. The What-If Report allows you to consider what- if I change

More information

MAGEJAM PLUGIN INSTALLATION GUIDE

MAGEJAM PLUGIN INSTALLATION GUIDE MAGEJAM PLUGIN INSTALLATION GUIDE BEFORE YOU BEGIN ANY INSTALL OR UPGRADE ** Always make sure to make a backup of your Magento installation before installing any extension especially on a live system.**

More information

RBackup Server Installation and Setup Instructions and Worksheet. Read and comply with Installation Prerequisites (In this document)

RBackup Server Installation and Setup Instructions and Worksheet. Read and comply with Installation Prerequisites (In this document) RBackup Server Installation and Setup Instructions and Worksheet Fill out the Installation Worksheet. (In this document) Read and comply with Installation Prerequisites (In this document) Review the Partner

More information

WordPress File Monitor Plus Plugin Configuration

WordPress File Monitor Plus Plugin Configuration WordPress File Monitor Plus Plugin Configuration Open Source Varsity To configure the WordPress file monitor plus plugin on your WordPress driven Blog / website, login to WordPress as administrator, by

More information

INSTALLATION AND SETUP HANDBOOK OF PAYU LATAM s PLUGIN FOR WOOCOMMERCE

INSTALLATION AND SETUP HANDBOOK OF PAYU LATAM s PLUGIN FOR WOOCOMMERCE INSTALLATION AND SETUP HANDBOOK OF PAYU LATAM s PLUGIN FOR WOOCOMMERCE WooCommerce is a Wordpress plugin that facilitates the creation of an online store integrated to the current site. So that your customers

More information

QUANTIFY INSTALLATION GUIDE

QUANTIFY INSTALLATION GUIDE QUANTIFY INSTALLATION GUIDE Thank you for putting your trust in Avontus! This guide reviews the process of installing Quantify software. For Quantify system requirement information, please refer to the

More information

HotelTV2. Easy Start Guide REV A0.6 D0254. 2014 October. Web : http://support.vestek.com.tr Mail : support@vestek.com.tr Tel : +90 212 286 01 06

HotelTV2. Easy Start Guide REV A0.6 D0254. 2014 October. Web : http://support.vestek.com.tr Mail : support@vestek.com.tr Tel : +90 212 286 01 06 D0254 HotelTV2 Easy Start Guide 2014 October 1. Revision History Date Owner Version Reason & Change 09 May 2012 Görkem Giray Bora Tunçer A0.1 Initial Creation 29 June 2012 Görkem Giray A0.2 Structure changed

More information

Creating a generic user-password application profile

Creating a generic user-password application profile Chapter 4 Creating a generic user-password application profile Overview If you d like to add applications that aren t in our Samsung KNOX EMM App Catalog, you can create custom application profiles using

More information

SINGLE NUMBER SERVICE - MY SERVICES MANAGEMENT

SINGLE NUMBER SERVICE - MY SERVICES MANAGEMENT Service Change Charge...$18 Monthly Service...$3/mo. LOGIN TO MY SERVICES In your web browser type in myservices.gondtc.com. Enter your Username (ten-digit phone number for example ) and Password. Your

More information

Absolute IT Solutions Product Catalog / Sales Order Maker Application

Absolute IT Solutions Product Catalog / Sales Order Maker Application Absolute IT Solutions Product Catalog / Sales Order Maker Application The android app that raise your sales figures Application Overview We believe our android application, AIS SOM, will effectively improve

More information

EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators

EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators Version 1.0 Last Updated on 15 th October 2011 Table of Contents Introduction... 3 File Manager... 5 Site Log...

More information

SEGPAY SUITE MERCHANT SETUP CONFIGURATION REPORTS

SEGPAY SUITE MERCHANT SETUP CONFIGURATION REPORTS SEGPAY SUITE MERCHANT SETUP CONFIGURATION REPORTS AUGUST 27, 2013 VERSION 1.01 TABLE OF CONTENTS 1 MERCHANT SETUP CONFIGURATION REPORTS...3 1.1 HOW TO GET THE MERCHANT SETUP CONFIGURATIONS REPORT... 3

More information

E-Commerce Installation and Configuration Guide

E-Commerce Installation and Configuration Guide E-Commerce Installation and Configuration Guide Rev: 2012-02-17 Sitecore E-Commerce Services 1.2 E-Commerce Installation and Configuration Guide A developer's guide to installing and configuring Sitecore

More information