EXT: SEO dynamic tag
|
|
|
- Cameron Harmon
- 10 years ago
- Views:
Transcription
1 EXT: SEO dynamic tag Extension Key: seo_dynamic_tag Copyright 2007 Dirk Wildt, This document is published under the Open Content License available from The content of this document is related to TYPO3 - a GNU/GPL CMS/Framework available from Table of Contents EXT: SEO dynamic tag... 1 Introduction... What does it do?... Requirements... Screenshots... tt_news... tt_products... Third Party Extension... More Screenshots... Installation... Quick start... Extension Manager... Tutorial... How to set up the extension... tt_news... tt_products Third Party Extension... 6 Debug Mode... 8 How to set up the extension... 8 Screenshots... 9 Reference General Settings Query Files FAQ SimulateStaticDocuments and RealUrl Helpful suggestions Further Information About the plugin icon Other extensions published by think visually To-Do list Changelog Introduction What does it do? You can generate values dynamically with this extension especially the <title>-tag the <meta>-tag description and the <meta>-tag keywords The <title>-tag can be the title and subtitle of a news in tt_news or the title and category of a product in tt_products for e.g. The <meta>-tag can be the short-field of a tt_news or the description of a product in tt_products for e.g. You can use the extension for every table and record, of course for tables and records of third party extensions too. Requirements Nothing but a little experience in typoscript and the syntax of SQL queries. EXT: SEO dynamic tag - 1
2 Screenshots tt_news Illustration 1: Headlines of a news and the browser-title Illustration 2: News in the frontend and the HTML code tt_products Illustration 3: Category and title of a product and browser title Illustration 4: product in the frontend and the HTML code Third Party Extension Illustration 5: Headlines of a 3. party extension and browser title Illustration 6: Third party extension and the HTML code More Screenshots See "Screenshots" on page 9. EXT: SEO dynamic tag - 2
3 Installation Quick start Install the extension with the extension manager. Configure the setup of the page, where you want to control title tags or other tags. Extension Manager Open the extension manager and download the SEO-dynamic-tag extension (key seo_dynamic_tag) and install it: Illustration 7: Extensionmanager Tutorial How to set up the extension Please read the section "How to set up the extension" in the chapter "Debug" on page 8. tt_news The result on the page with the single view of a news should be: The browser title is composed of the title (1) and the subtitle (2) of the news. That the <meta>-tag description (3) is the value of the short (3) field. That the <meta>-tag keyword (4) is the value of the title (1) and the subtitle (2) of the news. We need the following typoscript setup temp.seo = COA temp.seo { Illustration 8: The result select = CONCAT(`title`, ': ', `short`) from = `tt_news` var.1 = tx_ttnews[tt_news] 20 < plugin.tx_seodynamictag_pi1 20 { # Example for a meta tag special = register register = description select = `bodytext` from = `tt_news` var.1 = tx_ttnews[tt_news] maxlength = < plugin.tx_seodynamictag_pi1 30 { # Example for a meta tag special = register register = keywords select = CONCAT(`title`, ' ', `short`) EXT: SEO dynamic tag - 3
4 from = `tt_news` var.1 = tx_ttnews[tt_news] keywords = 1 The temp.seo object ist the last content element of our page. It has to be the last element, because we have to avoid, that other content elements override our browser page title or our <meta>-tags. page { subparts { content = COA # The single view of tt_news content.20 < temp.single # If the seo plugin should overwrite values like the page title, # the plugin have to be the last content element content.1000 < temp.seo General Explanation We choose a Content Object Array (COA), because we want more than one thing. temp.seo = COA temp.seo { We set up the three arrays 10 for the browser title and 20 for the <meta>-tag description and 30 for the <meta>-tag keywords. temp.seo = COA temp.seo { 20 < plugin.tx_seodynamictag_pi1 The special value defines the properties. There are three possibilities: title register no sepcial value "Title" effects, that the extension is overwriting the browsers <title>-tag. You can use this only for the browser title. "Register" enables, that the needed value will be stored in a typo3 register and will be used later. We need this for every <meta>-tag in the HTML head. The waiving of the special value effects, that the needed value will be echoed in the content area of our website. Though this is the default, but it seems to have less sense. The property "query" The plugin.tx_seodynamictag_pi1 has the property "query". The syntax of this property is the syntax of SQL. The typoscript setup code: EXT: SEO dynamic tag - 4
5 select = CONCAT(`title`, ': ', `short`) from = `tt_news` var.1 = tx_ttnews[tt_news] The property query is very powerful, because you can define variables, which will get a value at runtime. You can use a variable with any name in your SQL query everywhere. You have to label the variable with a dollar character ($). You have to define the array var with an element named with your variable. Then you have to allocate the global get variable or the global post variable. In the example above we defined the variable $1 in the where clause (red coloured). In the array var we defined the variable $1 a second time as the element 1: var.1 (red coloured). Then we allocate the value of global var tx_ttnews[tt_news] (red coloured). If you don't know, which GET variables or POST variables are available use the debug mode. The mode will display the array. debug = 1 tt_products Thank you for understanding, that we don't repeat explanations from above. If you aren't close with the example tt_news above, please read it first. The result on the page with the single view of a product should be: The browser title is composed of the title (1) and the category (2) of the product. That the <meta>-tag description (3) is the value of the subtitle (3) field. That the <meta>-tag keyword (4) is a list of the words "Detalgeräte", the words of the product title (1) and the product category (2). We need the following typoscript setup: temp.seo = COA temp.seo { Illustration 9: The result select = CONCAT(product.title, ' (', category.title, ')') as value from = tt_products as product, tt_products_cat as category where = product.uid = $1 AND product.category = category.uid \ AND product.deleted = 0 AND product.hidden = 0 var.1 = tx_ttproducts_pi1[product] 20 < plugin.tx_seodynamictag_pi1 20 { # Example for a meta tag special = register register = description select = `subtitle` from = `tt_products` var.1 = tx_ttproducts_pi1[product] maxlength = < plugin.tx_seodynamictag_pi1 30 { # Example for a meta tag EXT: SEO dynamic tag - 5
6 special = register register = keywords select = CONCAT('Dentalgerät ', product.title, ' ', category.title) as value from = tt_products as product, tt_products_cat as category where = product.uid = $1 AND product.category = category.uid \ AND product.deleted = 0 AND product.hidden = 0 var.1 = tx_ttproducts_pi1[product] keywords = 1 The temp.seo object ist the last content element of our page. It has to be the last element, because we have to avoid, that other content elements override our browser page title or our <meta>-tags. page { meta { description { field > data = register:description keywords { field > data = register:keywords 10 < styles.content.get 1000 < temp.seo The setup code is nearly the same like in the section tt_news above (page 3), but the select clause for the browsers page title and the keywords. select = CONCAT('Dentalgerät ', product.title, ' ', category.title) as value from = tt_products as product, tt_products_cat as category where = product.uid = $1 AND product.category = category.uid \ AND product.deleted = 0 AND product.hidden = 0 Yes, it's possible to link tables! The result is composed with values of records out of two tables. Third Party Extension Thank you for understanding, that we don't repeat explanations from above. If you aren't close with the example tt_news above, please read it first. The result on the page should be: The browser title is composed of the title (1) and the subtitle (2) of the displayed news. That the <meta>-tag description (3) is the value of the short (3) field. That the <meta>-tag keyword (4) is the value of the title (1) and the subtitle (2) of the news. The setup code is nearly the same like in the section tt_news above (page 3), but we have a different table name, different field names and a different global get variable. Illustration 10: The result temp.seo = COA temp.seo { select = CONCAT(`article_caption`, ': ', `article_roof`) EXT: SEO dynamic tag - 6
7 from = `tx_hptazarticle_list` var.1 = art 20 < plugin.tx_seodynamictag_pi1 20 { # Example for a meta tag special = register register = description select = `article_teaser_short` from = `tx_hptazarticle_list` var.1 = art 30 < plugin.tx_seodynamictag_pi1 30 { special = register register = keywords select = CONCAT(`article_caption`, ': ', `article_roof`) from = `tx_hptazarticle_list` var.1 = art keywords = 1 You see, that it is very easy to use the SEO dynamic extension for third party extensions. EXT: SEO dynamic tag - 7
8 Debug Mode How to set up the extension If you don't know, how to set up the extension "SEO dynamic tag", or if there will be any failure, it is very helpful to activate the debug mode. You will receive a lot of information like in our illustration above (page 9) about your typoscript code, the typoscript code changed by the extension, the success of substituting the used variables, the array with the available globals, the query string in the SQL database and the result. Turn the debug mode on: plugin.tx_seodynamictag_pi1.debug = 1 Or in our tutorial examples above temp.seo = COA temp.seo { debug = 1 Everything is ok but there is a failure If you have a failure like no effect in the page title, but everything in the report is ok, than there will be only one cause: The extension "SEO dynamic tag" isn't the last page element, another page element is overriding the page title or <meta>tags. Example code for page element: page { 10 < your_content # The seo plugin have to be the last content element 1000 < plugin.tx_seodynamictag_pi { Or in our tutorial examples above page { subparts { content = COA # Single view of a news in tt_news content.20 < temp.single # The seo plugin have to be the last content element content.1000 < temp.seo EXT: SEO dynamic tag - 8
9 Screenshots Example Page Title The values of the fields title (1) and short (2) of a tt_news and the values in the page title. Illustration 11: Values of the fields title and short of a tt_news and the page title The debug Report The same in the report. Report structure 1. Your typoscript code. 2. The typoscript code changed by the extension. 3. The result of Substitution: There is an "OK", if the global variable is available. There is an "DANGER", if the global variable isn't available. 4. The array with the available globals. 5. The SQL query string. If you don't know, if the query has the valid syntax, copy the query to PhpMyAdmin e.g. and test it. 6. The result value. In this example: 7. tt_news.title and 8. tt_news.short Illustration 12: Report in the debug mode SQL error message If there is any syntax error in your query, you get an SQL error message, but only in debug mode. Illustration 13: SQL error message EXT: SEO dynamic tag - 9
10 Reference plugin.tx_logicalform_pi1 properties: TS configuration. General Settings Property: Data type: Description: Default: debug boolean Debug mode (see "Debug Mode" on page 8 for any explanation) plugin.tx_logicalform_pi1 { debug = 1 0 special string: title, register There are two special values title and register (see "General empty Explanation" on page 4). In the default mode the special value is empty. Special value "title": The result of the query will be written in the browsers page title. Example 1: plugin.tx_logicalform_pi1 { special = title query {... Special value "register": The result of the query will be written in a first step in the register with the name "my_name" and than in a second step in <meta>-tag description. Example 2: plugin.tx_logicalform_pi1 { special = register register = my_name query {... page.meta.description { # Delete the default value field > data = register:my_name query ->QUERY SQL query with typoscript properties. select = CONCAT(`title`, ': ', `short`) from = `tt_news` where = `uid` = $1 var.1 = tx_ttnews[tt_news] empty EXT: SEO dynamic tag - 10
11 Query Property: select Data type: string Description: Default: SQL select command. Example 1: select = CONCAT(`title`, ': ', `short`) from = `tt_news` where = `uid` = $1 var.1 = tx_ttnews[tt_news] empty Example 2: select = CONCAT(product.title, ' \ (', category.title, ')') as value from = tt_products as product, \ tt_products_cat as category where = product.uid = $1 \ AND product.category = category.uid \ AND product.deleted = 0 \ AND product.hidden = 0 var.1 = tx_ttproducts_pi1[product] from string SQL table name. See example "select" above. empty where string SQL where expression. See example "select" above. empty var array Variable in a SQL query. You can use a variable with any name in your SQL query everywhere. You have to label the variable with a dollar character ($). empty You have to define the array var with an element named with your variable. Then you have to allocate the global get variable or the global post variable. If you need a post variable see property "method" below. See the example in the tutorial 'The property "query"' on page where = `uid` = $my_var AND \ `pid` = $my_other_var var.my_var = tx_ttnews[tt_news] var.my_other_var = tx_ttnews[pid] It's only an example. There is no global var tx_ttnews[pid] method string: get, post You can choose the global array GET or POST for substituting variables in your SQL query. method = post get keywords boolean If set, the result will be changed in a comma seperated list of words keywords = 1 0 maxlength integer If set, the result will be cut after maxlength chars. maxlength = dontstriptags boolean If set, the result value won't be stripped of it's HTML-tags. dontstriptags = 1 0 EXT: SEO dynamic tag - 11
12 Files Files for the configuration of language items and for documentation. File: Description: pi1/class.tx_seodynamictag_pi1.php Main PHP-class used to generate the browsers page title or the <meta>-tags description and keywords dynamically. ext_php_api.dat API documentation of the seo_dynamic_tag extension. FAQ SimulateStaticDocuments and RealUrl The extension is compatible. In RealUrl you can't see the global get variables. The extension displays this variables in debug mode (see page 8). Helpful suggestions If you have helpful suggestions, feel free to contact us: Dirk Wildt, Further Information About the plugin icon The concept of the icon: The reading-glass is symbol for a search machine. The stripe "follow me" is symbolizing content management as an powerful help. The colour red is symbolizing the colour of think visually, the company which created the seo_dynamic_tag extension. Other extensions published by think visually logical_form: A frontend plugin for evaluating forms majordomo: A web frontend for subscribing in majordomo lists and for unsubscribing from majordomo lists. To-Do list Nothing to do. Changelog 0.0.1: Initial release EXT: SEO dynamic tag - 12
Search Engine Optimization for the title tag, the canonical tag and the meta tags author, description and keywords.
SEO Dynamic Tag 2 SEO Dynamic Tag 2 Search Engine Optimization for the title tag, the canonical tag and the meta tags author, description and keywords. Version: 2.4.2, 2014-10-01 TYPO3: 4.5, 4.6, 4.7,
Browser Tutorial SEO - Search Engine Optimization - (en)
Browser Tutorial SEO - Search Engine Optimization - (en) Browser - TYPO3 without PHP SEO - Search Engine Optimization - for the Browser - TYPO3 without PHP. This is the tutorial for SEO only. Version:
EXT: Shop System Manager Module
EXT: Shop System Manager Module - shop_manager EXT: Shop System Manager Module EXT: Shop System Manager Module Extension Key: shop_manager Language: en Keywords: foreditors, foradmins, forbeginners Copyright
EXT:Booking Extension
EXT:Booking Extension - ab_booking EXT:Booking Extension Extension Key: ab_booking Language: en Keywords: booking, flat, room, hotel Copyright 2008-2011, Alexander Bigga, , www.bigga.de
Slick - responsive Carousel Slider
Slick carousel slider by Ken Wheeler. Fully responsive. Scales with its container. Separate settings per breakpoint. Swipe, desktop mouse dragging, infinite looping among others. Slick is ready-for-use
changes in tt_news 3.0.0
changes in tt_news 3.0.0 Extension Key: tt_news Copyright 2009, Rupert Germann, This document is published under the Open Content License available from http://www.opencontent.org/opl.shtml
EXT: News Event. Extension Key: mbl_newsevent Copyright 2000-2004, Mathias Bolt Lesniak, <[email protected]>
EXT: News Event Extension Key: mbl_newsevent Copyright 2000-2004, Mathias Bolt Lesniak, This document is published under the Open Content License available from http://www.opencontent.org/opl.shtml
Caddy responsive Shopping Cart
Caddy responsive Shopping Cart Caddy responsive Shopping Cart Caddy is the TYPO3 responsive Shopping Cart. It is optimised for desktops, tablets and smartphones. Caddy is e-commerce for small budget and
Direct Mail Tutorial
Direct Mail Tutorial Extension Key: direct_mail_tut Copyright 2000-2003, Marlies Cohen, This document is published under the Open Content License available from http://www.opencontent.org/opl.shtml
EXT: tollwerk Google Analytics
EXT: tollwerk Google Analytics Extension Key: tw_googleanalytics Language: en Version: 2.6.0 Keywords: google, analytics, tracking, foradministrators, fordevelopers, forintermediates, foradvanced Copyright
JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA
JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA All information presented in the document has been acquired from http://docs.joomla.org to assist you with your website 1 JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA BACK
Direct Mail Tutorial
Direct Mail Tutorial Extension Key: direct_mail_tut Copyright 2000-2003, Marlies Cohen, This document is published under the Open Content License available from http://www.opencontent.org/opl.shtml
Configuring the JEvents Component
Configuring the JEvents Component The JEvents Control Panel's Configuration button takes you to the JEvents Global Configuration page. Here, you may set a very wide array of values that control the way
EXT: TEQneers SEO Enhancements
EXT: TEQneers SEO Enhancements - tq_seo EXT: TEQneers SEO Enhancements Extension Key: tq_seo Language: en Keywords: SEO, Sitemap, Pagetitle, Metatags, Google, Yahoo, Bing, Google Analytics, Piwik, P3P
1. Starting the management of a subscribers list with emill
The sending of newsletters is the basis of an efficient email marketing communication for small to large companies. All emill editions include the necessary tools to automate the management of a subscribers
Installation & User Guide
SharePoint List Filter Plus Web Part Installation & User Guide Copyright 2005-2011 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario ON
Browser Tutorial Development (en) Browser - TYPO3 without PHP
Browser Tutorial Development (en) Browser - TYPO3 without PHP Develop the Browser - the TYPO3-Frontend-Engine. This is a manual, how to use the SVN-Repository. Version: 6.0.0-2014-10-07 Extension Key:
Installation & User Guide
SharePoint List Filter Plus Web Part Installation & User Guide Copyright 2005-2009 KWizCom Corporation. All rights reserved. Company Headquarters P.O. Box #38514 North York, Ontario M2K 2Y5 Canada E-mail:
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
ISVforce Guide. Version 35.0, Winter 16. @salesforcedocs
ISVforce Guide Version 35.0, Winter 16 @salesforcedocs Last updated: vember 12, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,
Notepad++ The COMPSCI 101 Text Editor for Windows. What is a text editor? Install Python 3
Notepad++ The COMPSCI 101 Text Editor for Windows The text editor that we will be using in the Computer Science labs for creating our Python programs is called Notepad++ and http://notepad-plus-plus.org
This is a training module for Maximo Asset Management V7.1. It demonstrates how to use the E-Audit function.
This is a training module for Maximo Asset Management V7.1. It demonstrates how to use the E-Audit function. Page 1 of 14 This module covers these topics: - Enabling audit for a Maximo database table -
SyncTool for InterSystems Caché and Ensemble.
SyncTool for InterSystems Caché and Ensemble. Table of contents Introduction...4 Definitions...4 System requirements...4 Installation...5 How to use SyncTool...5 Configuration...5 Example for Group objects
v1.1.0 SimpleSQL SQLite manager for Unity3D echo17.com
v1.1.0 SimpleSQL SQLite manager for Unity3D echo17.com Table of Contents Table of Contents................................................................ ii 1. Overview 2. Workflow...................................................................
FileMaker 11. ODBC and JDBC Guide
FileMaker 11 ODBC and JDBC Guide 2004 2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc. registered
DbSchema Tutorial with Introduction in SQL Databases
DbSchema Tutorial with Introduction in SQL Databases Contents Connect to the Database and Create First Tables... 2 Create Foreign Keys... 7 Create Indexes... 9 Generate Random Data... 11 Relational Data
Create a New Database in Access 2010
Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...
for Android Windows Desktop and Conduit Quick Start Guide
for Android Windows Desktop and Conduit Quick Start Guide HanDBase is a Registered Trademark of DDH Software, Inc. All information contained in this manual and all software applications mentioned in this
Administrator s Guide
SEO Toolkit 1.3.0 for Sitecore CMS 6.5 Administrator s Guide Rev: 2011-06-07 SEO Toolkit 1.3.0 for Sitecore CMS 6.5 Administrator s Guide How to use the Search Engine Optimization Toolkit to optimize your
EXT: Crawler. This document is published under the Open Content License available from http://www.opencontent.org/opl.shtml
EXT: Crawler - crawler EXT: Crawler Extension Key: crawler Language: en Keywords: foradmins, fordevelopers Copyright 2000-2008, Kasper Skårhøj, Daniel Pötzinger, Fabrizio Branca, Tolleiv Nietsch, Timo
FileMaker 12. ODBC and JDBC Guide
FileMaker 12 ODBC and JDBC Guide 2004 2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker, Inc.
Search help. More on Office.com: images templates
Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can
How to Process Opt-Out Reqeusts in GroupMail (Subscriber Add-On)
How to Process Opt-Out Reqeusts in GroupMail (Subscriber Add-On) Tuesday, January 23, 2007, 21:23 Your reputation and success depends on a well maintained list. List maintenance can be a very time consuming
Shipbeat Magento Module. Installation and user guide
Shipbeat Magento Module Installation and user guide This guide explains how the Shipbeat Magento Module is installed, used and uninstalled from your Magento Community Store. If you have questions or need
Stripe Payment Module Magento 2 USER MANUAL MAGEDELIGHT.COM SUPPORT E: [email protected] P: +1-(248)-275-1202
Stripe Payment Module Magento 2 USER MANUAL MAGEDELIGHT.COM SUPPORT E: [email protected] P: +1-(248)-275-1202 License Key After successful installation of Stripe Payment extension by using the Magento
NewsletterAdmin 2.4 Setup Manual
NewsletterAdmin 2.4 Setup Manual Updated: 7/22/2011 Contact: [email protected] Contents Overview... 2 What's New in NewsletterAdmin 2.4... 2 Before You Begin... 2 Testing and Production...
Table of Contents. 1.1 Description of DFM... 5
DFM Design File Management Client Installation Guide Version: June 8, 2005 Dominion Blue Reprographics 99 West Sixth Avenue Vancouver, B.C. V6Y 1K2 Tel: 604-681-7504 Fax: 604-681-6618 E-mail: [email protected]
SourceAnywhere Service Configurator can be launched from Start -> All Programs -> Dynamsoft SourceAnywhere Server.
Contents For Administrators... 3 Set up SourceAnywhere... 3 SourceAnywhere Service Configurator... 3 Start Service... 3 IP & Port... 3 SQL Connection... 4 SourceAnywhere Server Manager... 4 Add User...
CentovaCast 3 - Broadcasting With VirtualDJ
CentovaCast 3 - Broadcasting With VirtualDJ In this tutorial we are going to be taking a look at how to broadcast to our premium service running under CentovaCast 3 using VirtualDJ. Differences Between
GJC Web Design Virtuemart 2.0 Radius Shipping Plugin
GJC Web Design Virtuemart 2.0 Radius Shipping Plugin This is the VirtueMart 2.0 Radius Shipping Plugin that fully integrates and shows real time shipping quotes based on the distance from the vendor's
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
5. At the Windows Component panel, select the Internet Information Services (IIS) checkbox, and then hit Next.
Installing IIS on Windows XP 1. Start 2. Go to Control Panel 3. Go to Add or RemovePrograms 4. Go to Add/Remove Windows Components 5. At the Windows Component panel, select the Internet Information Services
There are numerous ways to access monitors:
Remote Monitors REMOTE MONITORS... 1 Overview... 1 Accessing Monitors... 1 Creating Monitors... 2 Monitor Wizard Options... 11 Editing the Monitor Configuration... 14 Status... 15 Location... 17 Alerting...
How to Install and use Windows XP Mode and Windows Virtual PC in Windows 7 for older 32 bit only Applications
How to Install and use Windows XP Mode and Windows Virtual PC in Windows 7 for older 32 bit only Applications Important Applies to Windows 7 Professional, Ultimate, Enterprise As of April 8, 2014, technical
Building A Web Database Using Contextual Mode
Building A Web Database Using Contextual Mode Introduction This tutorial will walk you through the steps necessary to build a simple database that you can deploy on the Web. It is assumed that you are
Dashboard Builder TM for Microsoft Access
Dashboard Builder TM for Microsoft Access Web Edition Application Guide Version 5.3 5.12.2014 This document is copyright 2007-2014 OpenGate Software. The information contained in this document is subject
Email to Fax Quick Start Tutorial MM-10-017-D
Email to Fax Quick Start Tutorial MM-10-017- VillageEOCS MM-10-017- Email to Fax Quick Start Tutorial Introduction Welcome and Thank You for choosing to evaluate our email to fax capabilities. In this
Project management integrated into Outlook
y Project management integrated into Outlook InLoox PM 7.x Help for the configuration for MySQL-Server An InLoox Whitepaper Published: October 2011 Copyright: InLoox GmbH 2011 You find up-to-date information
ORACLE BUSINESS INTELLIGENCE WORKSHOP
ORACLE BUSINESS INTELLIGENCE WORKSHOP Creating Interactive Dashboards and Using Oracle Business Intelligence Answers Purpose This tutorial shows you how to build, format, and customize Oracle Business
CDyWeb Content Management System (CCMS) V3.3. User Manual
CDyWeb Content Management System (CCMS) V3.3 User Manual Page 1 Table of Contents Table of Contents...2 1. Finding your way...3 2. Page editing...4 2.1 Changing order...4 2.2 Add a page...5 2.3 Edit Page...9
Learning Remote Control Framework ADD-ON for LabVIEW
Learning Remote Control Framework ADD-ON for LabVIEW TOOLS for SMART MINDS Abstract This document introduces the RCF (Remote Control Framework) ADD-ON for LabVIEW. Purpose of this article and the documents
VX Search File Search Solution. VX Search FILE SEARCH SOLUTION. User Manual. Version 8.2. Jan 2016. www.vxsearch.com [email protected]. Flexense Ltd.
VX Search FILE SEARCH SOLUTION User Manual Version 8.2 Jan 2016 www.vxsearch.com [email protected] 1 1 Product Overview...4 2 VX Search Product Versions...8 3 Using Desktop Product Versions...9 3.1 Product
Typo3 Extension API. mysqldump --password=[password] [database name] [tablename] --add-drop-table >./ext_tables_static.sql
Typo3 Extension API Introduction Typo3 can be extended in nearly any direction without loosing backwards compatibility. The Extension API provides a powerful framework for easily adding, removing, installing
Oracle Enterprise Manager
Oracle Enterprise Manager System Monitoring Plug-in for Oracle TimesTen In-Memory Database Installation Guide Release 11.2.1 E13081-02 June 2009 This document was first written and published in November
Install MS SQL Server 2012 Express Edition
Install MS SQL Server 2012 Express Edition Sohodox now works with SQL Server Express Edition. Earlier versions of Sohodox created and used a MS Access based database for storing indexing data and other
How to Create and Send a Froogle Data Feed
How to Create and Send a Froogle Data Feed Welcome to Froogle! The quickest way to get your products on Froogle is to send a data feed. A data feed is a file that contains a listing of your products. Froogle
Ipswitch Client Installation Guide
IPSWITCH TECHNICAL BRIEF Ipswitch Client Installation Guide In This Document Installing on a Single Computer... 1 Installing to Multiple End User Computers... 5 Silent Install... 5 Active Directory Group
GJC Web Design Virtuemart 3.0/2.0 Postcode Shipping Plugin
GJC Web Design Virtuemart 3.0/2.0 Postcode Shipping Plugin This is the VirtueMart 3.0/2.0 Postcode Shipping Plugin that fully integrates and shows real time shipping quotes based on the customers postcode
The Power Loader GUI
The Power Loader GUI (212) 405.1010 [email protected] Follow: @1010data www.1010data.com The Power Loader GUI Contents 2 Contents Pre-Load To-Do List... 3 Login to Power Loader... 4 Upload Data Files to
Differences in Use between Calc and Excel
Differences in Use between Calc and Excel Title: Differences in Use between Calc and Excel: Version: 1.0 First edition: October 2004 Contents Overview... 3 Copyright and trademark information... 3 Feedback...3
FORTIS. User Guide. Fully responsive flexible Magento theme by Infortis. Copyright 2012-2013 Infortis. All rights reserved
FORTIS Fully responsive flexible Magento theme by Infortis User Guide Copyright 2012-2013 Infortis All rights reserved How to use this document Please read this user guide carefully, it will help you eliminate
ONLINE BUSINESS PLATFORM. SEO Checklist: 7 Essential Checks Before Launching Your Sitefinity Website
ONLINE BUSINESS PLATFORM SEO Checklist: 7 Essential Checks Before Launching Your Sitefinity Website Before publishing a new Sitefinity website, you should validate that your pages are aligned with current
Add an Audit Trail to your Access Database
Add an to your Access Database Published: 22 April 2013 Author: Martin Green Screenshots: Access 2010, Windows 7 For Access Versions: 2003, 2007, 2010 About This Tutorial My Access tutorials are designed
User s Guide For Department of Facility Services
Doc s File Server User s Guide For Department of Facility Services For Ver : 7.2.88.1020 Rev : 1_05-27-2011 Created by : Elliott Jeyaseelan 2 Table of Contents SERVER LOGIN & AUTHENTICATION REQUIREMENTS
LDAP / SSO Authentication
LDAP / SSO Authentication - ig_ldap_sso_auth LDAP / SSO Authentication LDAP / SSO Authentication Extension Key: ig_ldap_sso_auth Language: en Keywords: ldap, sso, authentication Copyright 2000-2010, Michael
aspwebcalendar FREE / Quick Start Guide 1
aspwebcalendar FREE / Quick Start Guide 1 TABLE OF CONTENTS Quick Start Guide Table of Contents 2 About this guide 3 Chapter 1 4 System Requirements 5 Installation 7 Configuration 9 Other Notes 12 aspwebcalendar
LDAP and Active Directory Guide
LDAP and Active Directory Guide Contents LDAP and Active Directory Guide...2 Overview...2 Configuring for LDAP During Setup...2 Deciding How to Use Data from LDAP... 2 Starting the Setup Tool... 3 Configuring
creating a text-based editor for eclipse
creating a text-based editor for eclipse By Elwin Ho Contact author at: [email protected] June 2003 2003 HEWLETT-PACKARD COMPANY TABLE OF CONTENTS Purpose...3 Overview of the Eclipse Workbench...4 Creating
Client Instructions - ID Tech Configuration Instructions
Client Instructions - ID Tech Configuration Instructions Please follow the steps below to get started with the configuration process for your ID Tech reader. A student ID card will be necessary for the
An Email Newsletter Using ASP Smart Mailer and Advanced HTML Editor
An Email Newsletter Using ASP Smart Mailer and Advanced HTML Editor This tutorial is going to take you through creating a mailing list application to send out a newsletter for your site. We'll be using
Magento extension for ricardo.ch
Magento User Guide Plug-in für ricardo.ch Magento extension for ricardo.ch Version 1.2.0 Page 2 of 45 Table of content 1 INTRODUCTION 5 1.1 OVERVIEW 5 1.2 ABOUT RICARDO.CH GROUP 5 1.3 ABOUT DIGLIN 5 1.4
SEO AND META TAGS. DOCUMENT Here is a guide to SEO on your Webdadi website. WEBDADI Updated Nov 2015
DOCUMENT Here is a guide to SEO on your Webdadi website SEO AND META WEBDADI Updated Nov 2015 TAGS How to make sure your SEO is updated on your Webdadi pages for individual pages, Meta tags, Window titles,
Digital Signature Pads and ICE Health Systems:
Digital Signature Pads and ICE Health Systems: This document is a tutorial on setting up Adobe Acrobat Pro/Reader to use the Topaz Systems Inc. Digital Signature Pads with ICE Health Systems in relation
SQLBase. Starter Guide 20-2905-1004
SQLBase Starter Guide 20-2905-1004 Trademarks Centura, Centura net.db, Centura Ranger, the Centura logo, Centura Web Developer, Gupta, the Gupta logo, Gupta Powered, the Gupta Powered logo, Fast Facts,
Joomla + Virtuemart 2 Template CoolMart TUTORIAL. INSTALLATION CoolMart Template (in 2 Methods):
// Flexible Joomla + Virtuemart 2 Template CoolMart FOR VIRTUEMART 2.0.x and Joomla 2.5.xx // version 1.0 // author Flexible Web Design Team // copyright (C) 2011- flexiblewebdesign.com // license GNU/GPLv3
Setting Up Person Accounts
Setting Up Person Accounts Salesforce, Winter 16 @salesforcedocs Last updated: November 4, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,
Ingenious Testcraft Technical Documentation Installation Guide
Ingenious Testcraft Technical Documentation Installation Guide V7.00R1 Q2.11 Trademarks Ingenious, Ingenious Group, and Testcraft are trademarks of Ingenious Group, Inc. and may be registered in the United
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:
Composite.Community.Newsletter - User Guide
Composite.Community.Newsletter - User Guide Composite 2015-11-09 Composite A/S Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.composite.net Contents 1 INTRODUCTION... 4 1.1 Who Should Read This
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,
ThirtySix Software WRITE ONCE. APPROVE ONCE. USE EVERYWHERE. www.thirtysix.net SMARTDOCS 2014.1 SHAREPOINT CONFIGURATION GUIDE THIRTYSIX SOFTWARE
ThirtySix Software WRITE ONCE. APPROVE ONCE. USE EVERYWHERE. www.thirtysix.net SMARTDOCS 2014.1 SHAREPOINT CONFIGURATION GUIDE THIRTYSIX SOFTWARE UPDATED MAY 2014 Table of Contents Table of Contents...
QuickStart EasySite Guide Windows Hosting Includes EasySite Plus, Shopping Cart, PodCasts, Flash, Blogs and much more
QuickStart EasySite Guide Windows Hosting Includes EasySite Plus, Shopping Cart, PodCasts, Flash, Blogs and much more Everything you need to get started creating your own website. EasySite it s never been
An Introduction to Developing ez Publish Extensions
An Introduction to Developing ez Publish Extensions Felix Woldt Monday 21 January 2008 12:05:00 am Most Content Management System requirements can be fulfilled by ez Publish without any custom PHP coding.
Forms Printer User Guide
Forms Printer User Guide Version 10.51 for Dynamics GP 10 Forms Printer Build Version: 10.51.102 System Requirements Microsoft Dynamics GP 10 SP2 or greater Microsoft SQL Server 2005 or Higher Reporting
Manual. CollabNet Subversion Connector to HP Quality Center. Version 1.2
Manual CollabNet Subversion Connector to HP Quality Center Version 1.2 A BOUT THE CONNECTOR About the Connector The CollabNet Subversion Connector to HP Quality Center enables Quality Center users to
Dreamweaver CS6 Basics
Dreamweaver CS6 Basics Learn the basics of building an HTML document using Adobe Dreamweaver by creating a new page and inserting common HTML elements using the WYSIWYG interface. EdShare EdShare is a
LANDesk Management Suite 8.7 Extended Device Discovery
LANDesk Management Suite 8.7 Extended Device Discovery Revision 1.0 Roy Meyer Feb. 7, 2007 Information in this document is provided in connection with LANDesk Software products. No license, express or
How to work with the WordPress themes
How to work with the WordPress themes The WordPress themes work on the same basic principle as our regular store templates - they connect to our system and get data about the web hosting services, which
OTRS How To Series. Localization of OTRS Language Files. OTRS Help Desk, OTRS ITSM and Extensions
OTRS How To Series Localization of OTRS Language Files OTRS Help Desk, OTRS ITSM and Extensions Version 1.3 June, 2011 Content 1 ABOUT THIS GUIDE... 3 2 WHAT KIND OF TRANSLATION FILES EXIST... 3 3 STEP
Release Notes For Versant/ODBC On Windows. Release 7.0.1.4
Release Notes For Versant/ODBC On Windows Release 7.0.1.4 Table of Contents CHAPTER 1: Release Notes... 3 Description of Release... 4 System Requirements... 4 Capabilities of the Drivers... 5 Restrictions
JoomDOC Documentation
JoomDOC Documentation Pavel Macháček Jiří Trumpeš Copyright 2014 - ARTIO International Co. JoomDOC Documentation ARTIO Publication date: 26.5.2014 Version: 1.0.3 Abstract User documentation for JoomDOC
CREATING AND EDITING CONTENT AND BLOG POSTS WITH THE DRUPAL CKEDITOR
Drupal Website CKeditor Tutorials - Adding Blog Posts, Images & Web Pages with the CKeditor module The Drupal CKEditor Interface CREATING AND EDITING CONTENT AND BLOG POSTS WITH THE DRUPAL CKEDITOR "FINDING
ODBC Driver Version 4 Manual
ODBC Driver Version 4 Manual Revision Date 12/05/2007 HanDBase is a Registered Trademark of DDH Software, Inc. All information contained in this manual and all software applications mentioned in this manual
UltraLog HSPI User s Guide
UltraLog HSPI User s Guide A HomeSeer HS2 plug-in to store and retrieve HomeSeer and syslog events Copyright 2013 [email protected] Revised 01/27/2013 This document contains proprietary and copyrighted
WCFStormHost User Guide
WCFStormHost User Guide WcfStorm Solutions Pte. Ltd. 1/14/2012 1 Table of Contents 1 Installation Steps... 3 2 Quick Start... 5 2.1 Hosting a WCF Service... 5 2.1.1 Steps to host a service... 6 3 Getting
for Android Desktop and Conduit for Mac Quick Start Guide
for Android Desktop and Conduit for Mac Quick Start Guide HanDBase is a Registered Trademark of DDH Software, Inc. All information contained in this manual and all software applications mentioned in this
Change Management for Rational DOORS User s Guide
Change Management for Rational DOORS User s Guide Before using this information, read the general information under Appendix: Notices on page 58. This edition applies to Change Management for Rational
TinyUrl (v1.2) 1. Description. 2. Configuration. 2.1. Commands
1. Description The TinyUrl plugin provides two main functions: Converts urls to tinyurls Displays the page title of the requested URL When the!tinyurl command is entered, it takes the last url seen in
