Elgg 1.8 Social Networking

Size: px
Start display at page:

Download "Elgg 1.8 Social Networking"

Transcription

1 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

2 Preface 1 Chapter 1: Social Networking and Elgg 7 Social features 8 Profiles 8 Relationships 8 Content sharing 8 Activity and notifications 8 Groups 8 Communication 9 What is Elgg? 9 The Elgg engine 10 User management 11 Privacy Theming 11 Commenting 12 Tagging 12 Widgets 12 controls 11 Internationalization 13 Feeds 13 Web services 14 The power of plugins 14 Bundled plugins 14 Third-party plugins 14 Themes 15 Building your own plugins 15 Case studies 15 Niche social network 16 Designing and building the site 16 Deploying the site 16

3 Plugins mentioned 17 Corporate intranet 17 Designing and building the site 17 Deploying the site 18 Plugins mentioned 18 Educational collaboration 18 Designing and building the site 19 Deploying the site 19 Plugins mentioned 19 Elgg resources 20 Elgg community 20 Elgg wiki 20 Developer resources 20 A few words of advice 20 Take notes 20 Save resources 21 Be methodical 21 Finding help 21 Summary 21 Chapter 2: Installing Elgg 23 Preparing the server 23 Checking requirements 24 Downloading the latest version 24 Extracting the files 25 Moving files to your web server directory 25 Configuring the server 27 Create the database 28 Run Elgg's installer 29 Loading the database 31 Configure Elgg 32 Creating the admin account 33 All done! 34 Summary 35 Chapter 3: A Tour of Your First Elgg Site 37 Getting around 38 Registering users 39 User profiles and avatars 40 Profile information 41 Avatar 42 Profile widgets 43

4 Friends 45 Activity stream 47 Tools 48 Blogs 48 Bookmarks 49 Files 50 Groups 50 Pages 52 Messages 53 The wire 53 User settings 54 Your settings 54 Tools 55 Notifications 55 Administration 56 Activating plugins 58 Site categories 58 Custom profile fields 59 Default widgets 59 Site pages 60 Reported content 61 Customizing your site 61 User registration and authentication 62 Widgets 62 Friendship model 62 Roles 62 Help and support 63 Summary 63 Chapter 4: Sharing Content 65 Blogs 66 Creating a blog post 67 Embedding photos and files 68 Publishing 69 Finding and viewing 69 Search 70 Lists of blog posts 70 RSS feeds 71 Widget 72 Commenting 72 Use cases 73 Customizations 73

5 Bookmarks 74 Adding a bookmark 74 Bookmarklet 76 Viewing 77 Use cases 78 File 79 Uploading a file 79 Viewing 80 Use cases 83 Customizations 83 The wire 83 Posting 84 Viewing 85 Twitter integration 86 Use cases 89 Customizations 90 Summary 9 Chapter 5: Communities, Collaboration, and Conversation 91 Groups 92 Creating a group 92 Group profile 94 Membership 95 Discussion forum 96 Group tools 98 Finding groups 99 Use cases 100 Customizations 100 Pages 101 Creating pages 102 Viewing 103 Use cases 104 Customizations 104 Messages 104 Inbox 104 Composing 105 Customizations 106 Message board 106 Customizations 108 Summary 108

6 Table ofcontents Chapter 6: Finding and Using Plugins 109 Plugin administration 109 Filtering and sorting 109 Plugin dependencies 110 Plugin settings 113 Finding plugins 113 Browsing the repository 115 Searching 115 Evaluating before downloading 115 Look at the plugin overview 115 Read the comments 115 Check the history 116 Custom plugins 116 Installing plugins 116 Test server 117 Copying the code 117 Activating and configuring 117 Invalid plugin? 118 Troubleshooting 118 Themes 118 Finding and installing themes 119 Free themes 119 Commercial themes 120 Custom themes 120 Installing themes 121 Major community plugins 122 Tidypics 122 Plugin profile 122 Administration 123 Uploading photos 124 Viewing photos 124 Tagging photos 126 Event calendar 126 Plugin profile 127 Administration 127 Site calendar 127 Group calendar 128 Profile Manager 128 Plugin profile 128 Adding profile fields 129 Configuring the profile fields 130 Plugin settings 130 Summary 131

7 Table ofcontents Chapter 7: Creating Your First Plugin 133 What you need to know 134 Elgg developer resources 135 Setting up your development environment 136 Editing code 136 Configuring your site 137 Hello, World! 138 Plugin skeleton 138 Create your plugin directory 138 Plugin manifest 139 Start script 139 Activating the hello world plugin 140 Register for the init, system event 140 Adding a new route 141 Creating a web page 142 Update routing 143 Add to the site menu 144 Extending the page handler 145 Add a sidebar menu 146 Language support 148 Personalizing the content 149 Organizing your content into views 150 A greeting view 151 A stats view 153 Review 155 Debugging 155 Debugging to the log 156 Debugging to the screen 157 Debugging PHP through an IDE 158 Firebug and other browser development tools 159 Elgg developer tools 161 Inspect 161 Theming sandbox 162 Summary 162 Chapter 8: Customization through Plugins 163 Lesson 1: Changing wording 164 Problem 164 Solution 164 Example 164 Step 1: Create the plugin structure 165 Step 2: Find the language strings 166 Step 3: Override the language string 166

8 Table ofcontents Exercise 167 Lesson 2: Modifying a section of a page 167 Problem 167 Solution 168 Example 168 Step 1: Find the view to override 168 Step 2: Create the plugin structure 170 Step 3: Edit the logo view 170 Step 4: Style the header 172 Exercise 173 Lesson 3: Adding new content to a page 173 Problem 173 Solution 173 Example 174 Step 1: Find the view to extend 175 Step 2: Create the plugin structure 175 Step 3: Build our view 175 Step 4: Make the tips random 176 Exercise 177 Lesson 4: Doing something when X happens 178 Problem 178 Solution 178 Example 178 Step 1: Find the event 178 Step 2: Create the plugin structure 179 Step 3: Write the function that sends the 180 Exercise 180 Lesson 5: Creating a custom widget 181 Problem 181 Solution 181 Example 181 Step 1: Create the plugin Step 2: Create the widget Step 3: Create the widget structure 182 edit view 182 content view 184 Exercise 186 Lesson 6: Giving your users options 186 Problem 186 Solution 187 Example 187 Step 1: Create the plugin structure 187 Step 2: Add user settings 188 Step 3: Create the toolbar view 190 Step 4: Add CSS 191

9 Exercise 192 Lesson 7: Adding JavaScript 193 Problem 193 Solution 193 Example 193 Step 1: Create the plugin structure 194 Step 2: Load the JavaScript file 194 Step 3: Add CSS and JavaScript initialization 195 Exercise 196 Lesson 8: Changing how Elgg does X 197 Problem 197 Solution 197 Example 197 Step 1: Create the plugin structure 198 Step 2: Create the index page 199 Step 3: Define the views 201 Step 4: Add the CSS 203 Step 5: Add a plugin setting 204 Exercise 206 Lesson 9: Collecting and storing data 207 Problem 207 Solution 207 Example 207 Overview 208 Step 1: Create the plugin structure 208 Step 2: Create the main help page 209 Step 3: Create the categories 211 Step 4: Add an administration page Step 5: Create the form body 213 Step 6: Create the save action 215 Step 7: Create the help category page 217 Step 8: Create the help object view 219 Step 9: Add the help sidebar 221 Step 10: Add CSS for the topic listing page 222 Step 11: Finish the main help page 223 Exercise 225 Summary 226 Chapter 9: Theming Elgg 227 What you need to know 228 Theming basics 228 Elgg's default theme 228 HTML 229 CSS 231 JavaScript 232 Graphics 233

10 Views system 233 What is a view? 233 Extending a view 234 Overriding a view 234 Template language 234 Caching 235 The viewtype 235 Tools 235 CSS framework 236 Creating abstractions of common visual patterns 236 Customizing objects through extension classes 237 Adding external JavaScript and CSS 238 Menu system 238 Registering a menu item 239 Rendering a menu 240 Comparing theming in WordPress to Elgg 240 Building a theme 241 Plugin structure 242 Layout 244 Default layout 244 Page header 244 Page body layout 244 Page footer 245 Moving the search box 246 Styling the sidebar module 247 Moving the site menu to the topbar 248 Creating a mobile theme 251 Plugin structure 252 Layout 253 CSS 253 Summary 256 Chapter 10: Moving to Production 257 Selecting a server 258 Performance considerations 258 Competing for resources 258 Usage patterns 259 General guidelines for server selection 260 Hosting options 260 Shared hosting 261 Virtual Private Server 261 Dedicated server 262 Cloud hosting 262 Hosting company selection 262 Configuring a server 263 Apache 263

11 PHP 264 MySQL 266 Cron Managing the site 268 Backup 269 Code 269 Database 269 Files 270 Server configuration 270 Restoring 270 Log rotation 270 Spam 271 Registration 271 Detecting spammers 272 Web analytics 273 Daily tasks 273 Monitoring user registration 273 Reviewing reported content 273 Responding to feedback 273 Community management 274 Testing, upgrading, and moving a site 274 Testing 274 Mirroring the production site 274 Test plan 275 Upgrading 276 Moving a site 277 Performance 278 Benchmarking 278 Monitoring and data collection 278 Stress testing 279 Easy performance gains 280 Advanced performance tuning and scaling 281 Caching 281 Multiple servers 282 Resources 282 Reporting bugs 283 Steps to reproduce the problem 283 Elgg or plugin? 284 Reporting the bug 284 Summary 284 Appendix A: Developer's Quick Start Guide 285 Overview of Elgg as a framework 285 What is Elgg? 286

12 Object-oriented or procedural? 286 Does it use the Model-View-Controller pattern? 286 Convention or configuration? 286 Is it extensible? 286 What template engine is used? 287 A Model-View-Controller perspective of Elgg 287 Overview 287 Controllers 287 Model 288 Views 289 Routing 290 Code location 290 Actions 290 Code location 290 Page handlers 291 Code location 291 Framework booting 291 Code location 292 Data model 292 Entities 292 Type and subtype 293 GUID 293 Owner 293 Container 293 Access 293 Database 294 Relationships 294 Extenders 294 Database 295 Retrieval functions 296 Code location 296 Views 297 View templates 297 Page shells and layout 298 View type 298 Overriding and extending views 299 Special views 299 Code location 299 Events and hooks 300 Elgg events 300 Plugin hooks 300 Code location 301

13 Plugins 301 Initialization 302 Plugin order 302 Conventions 302 Themes 303 Code location 303 Activity stream 304 Code location 304 Notifications 304 Code location 304 Internationalization and localization 305 Code location 305 Lightning round 305 Authentication 306 Caching 306 Configuration 306 Debugging and logging 306 JavaScript 307 Menus 307 Private settings 307 Search 307 Security 308 Session handling 308 Unit tests 308 Web services 308 Widgets 308 Summary 309 Appendix B: Views Catalog Using views 311 Page structure 312 Shells ^ Layouts 313 Elements 313 Topbar 314 Header 314 Sidebar 314 Footer 315 Owner block 316 Status messages 316 Comments 317 Search box 317 Components 318

14 Table ofcontents Gallery 318 Image block 319 List 319 Module 320 Navigation 321 Breadcrumbs 321 Pagination 321 Menus 321 Topbar menu 322 Site menu 322 Page menu 322 Footer menu 323 User hover menu 323 Entity menu 323 Tabs 324 Forms 324 Input 324 Access 325 Buttons 325 Checkboxes 325 Date 326 Drop-down selector 327 File upload 327 Hidden input 327 Large textarea 328 Password 328 Radio buttons 328 Textbox 329 User pickers 329 Output 330 Date 330 address 330 Link 330 Tag cloud 331 Tags 331 Text 331 The form 331 Users, groups, and objects 332 Activity stream 332 Likes 333 Like this 333 List users 333 Widgets 334 Administration 335 Summary 336 Index 337 [ xiii ]

ADMINISTRATOR GUIDE VERSION

ADMINISTRATOR GUIDE VERSION ADMINISTRATOR GUIDE VERSION 4.0 2014 Copyright 2008 2014. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means electronic or mechanical, for any purpose

More information

Lisa Sabin-Wilson WILEY. Wiley Publishing, Inc.

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

More information

Drupal. open source^ community experience distilled. 7 Business Solutions. Build powerful website features for your business. Trevor James.

Drupal. open source^ community experience distilled. 7 Business Solutions. Build powerful website features for your business. Trevor James. Drupal 7 Business Solutions Build powerful website features for your business Trevor James Mark Noble PUBLISHING o open source^ community experience distilled - BIRMINGHAM MUMBAI Preface 1 Chapter 1: Planning

More information

ireview Template Manual

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

More information

Joomla! template Blendvision v 1.0 Customization Manual

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

More information

Using your Drupal Website Book 1 - Drupal Basics

Using your Drupal Website Book 1 - Drupal Basics Book 1 - Drupal Basics By Karl Binder, The Adhere Creative Ltd. 2010. This handbook was written by Karl Binder from The Adhere Creative Ltd as a beginners user guide to using a Drupal built website. It

More information

uilding a Branch Website using Wordpress

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

More information

Building Your First Drupal 8 Company Site

Building Your First Drupal 8 Company Site Building Websites with Drupal: Learn from the Experts Article Series Building Your First Drupal 8 Company Site by Todd Tomlinson July, 2014 Unicon is a Registered Trademark of Unicon, Inc. All other product

More information

WordPress websites themes and configuration user s guide v. 1.6

WordPress websites themes and configuration user s guide v. 1.6 WordPress websites themes and configuration user s guide v. 1.6 Congratulations on your new website! Northeastern has developed two WordPress themes that are flexible, customizable, and designed to work

More information

Developing ASP.NET MVC 4 Web Applications MOC 20486

Developing ASP.NET MVC 4 Web Applications MOC 20486 Developing ASP.NET MVC 4 Web Applications MOC 20486 Course Outline Module 1: Exploring ASP.NET MVC 4 The goal of this module is to outline to the students the components of the Microsoft Web Technologies

More information

J j enterpririse. Oracle Application Express 3. Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX

J j enterpririse. Oracle Application Express 3. Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX Oracle Application Express 3 The Essentials and More Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX Arie Geller Matthew Lyon J j enterpririse PUBLISHING BIRMINGHAM

More information

Magento 1.4 Themes Design

Magento 1.4 Themes Design Magento 1.4 Themes Design Customize the appearance of your Magento 1.4 e-commerce store with Magento's powerful theming engine Richard Carter [ PUBLISHING 1 open source I community experience distilled

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

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

Google Sites: Creating, editing, and sharing a site

Google Sites: Creating, editing, and sharing a site Google Sites: Creating, editing, and sharing a site Google Sites is an application that makes building a website for your organization as easy as editing a document. With Google Sites, teams can quickly

More information

Word Press Theme Video Stream Apptha

Word Press Theme Video Stream Apptha Word Press Theme Video Stream Apptha Steps for Installation: Extract the downloaded UNZIP_THIS_FIRST_videostream.zip file. Once you have extract, follow the below steps: Go to Admin Appearance Themes Install

More information

Lesson One Creating the Website and the WordPress Process

Lesson One Creating the Website and the WordPress Process Techedutainment Services Creating a Dynamic Website with WordPress Page 1 In the beginning and start up Welcome! I welcome to your WordPress class. This document provides a guideline to the lectures, exercises,

More information

SOA Software API Gateway Appliance 7.1.x Administration Guide

SOA Software API Gateway Appliance 7.1.x Administration Guide SOA Software API Gateway Appliance 7.1.x Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names,

More information

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

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

More information

Developing ASP.NET MVC 4 Web Applications

Developing ASP.NET MVC 4 Web Applications Course M20486 5 Day(s) 30:00 Hours Developing ASP.NET MVC 4 Web Applications Introduction In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5 tools

More information

Getting Started with Sites at Penn State

Getting Started with Sites at Penn State About Sites at Penn State Getting Started with Sites at Penn State The Sites at Penn State tool is powered by WordPress.com, a powerful, personal publishing platform that allows you to create a website

More information

Christopher Zavatchen

Christopher Zavatchen Christopher Zavatchen chris@cnc137.com 330-558-1137 273 Bettie Lane Brunswick, Ohio 44212 Objective Seeking a career opportunity enabling me to fully utilize my web design and development skills while

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

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

Themes and Templates Manual FOR ADVANCED USERS

Themes and Templates Manual FOR ADVANCED USERS Manual FOR ADVANCED USERS Table of Contents Introduction... 3 Key Information... 3 Portal Structure... 4 Portal Structure: Template... 5 Overview... 5 1) Editing a Portal Template... 6 2) Adding a Portal

More information

Sugar Open Source Version 3.5. User Guide

Sugar Open Source Version 3.5. User Guide Sugar Open Source Version 3.5 User Guide Copyright 2004-2005 SugarCRM Inc. www.sugarcrm.com Original version authored by: The Long Reach Corporation www.thelongreach.com This document is subject to change

More information

Kentico CMS 7.0 Intranet User's Guide

Kentico CMS 7.0 Intranet User's Guide Kentico CMS 7.0 Intranet User's Guide 2 Kentico CMS 7.0 Intranet User's Guide Table of Contents Introduction 5... 5 About this guide Getting started 7... 7 Accessing the Intranet Portal... 8 Intranet Portal

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

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

WordPress 2.9 e-commerce

WordPress 2.9 e-commerce WordPress 2.9 e-commerce Build a proficient online store to sell and services products Brian Bondari Table of Contents Preface 1 Chapter 1: Getting Started with WordPress and e-commerce 7 Why WordPress

More information

Do I have to use the blog section of the site? No. Your blog is hidden by default so it won't be available unless you choose to turn it on.

Do I have to use the blog section of the site? No. Your blog is hidden by default so it won't be available unless you choose to turn it on. Agent Website FAQ What are the features/benefits of the new Agent Websites? The Agent Website offering is a feature-rich, WordPress based product that provides individual personalization to the agent,

More information

Grails 1.1. Web Application. Development. Reclaiming Productivity for Faster. Java Web Development. Jon Dickinson PUBLISHING J MUMBAI BIRMINGHAM

Grails 1.1. Web Application. Development. Reclaiming Productivity for Faster. Java Web Development. Jon Dickinson PUBLISHING J MUMBAI BIRMINGHAM Grails 1.1 Development Web Application Reclaiming Productivity for Faster Java Web Development Jon Dickinson PUBLISHING J BIRMINGHAM - MUMBAI Preface Chapter 1: Getting Started with Grails 7 Why Grails?

More information

Kentico CMS 7.0 Intranet Administrator's Guide

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

More information

Startup Guide. Version 2.3.9

Startup Guide. Version 2.3.9 Startup Guide Version 2.3.9 Installation and initial setup Your welcome email included a link to download the ORBTR plugin. Save the software to your hard drive and log into the admin panel of your WordPress

More information

Wakanda Studio Features

Wakanda Studio Features Wakanda Studio Features Discover the many features in Wakanda Studio. The main features each have their own chapters and other features are documented elsewhere: Wakanda Server Administration Data Browser

More information

Trainer name is P. Ranjan Raja. He is honour of www.php2ranjan.com and he has 8 years of experience in real time programming.

Trainer name is P. Ranjan Raja. He is honour of www.php2ranjan.com and he has 8 years of experience in real time programming. Website: http://www.php2ranjan.com/ Contact person: Ranjan Mob: 09347045052, 09032803895 Domalguda, Hyderabad Email: purusingh2004@gmail.com Trainer name is P. Ranjan Raja. He is honour of www.php2ranjan.com

More information

Rails Cookbook. Rob Orsini. O'REILLY 8 Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo

Rails Cookbook. Rob Orsini. O'REILLY 8 Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo Rails Cookbook Rob Orsini O'REILLY 8 Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo Table of Contents Foreword : ; xi Preface ; ;... xiii 1. Getting Started 1 1.1 Joining the Rails Community

More information

Aspect WordPress Theme

Aspect WordPress Theme by DesignerThemes.com Hi there. Thanks for purchasing this theme, your support is greatly appreciated! This theme documentation file covers installation and all of the main features and, just like the

More information

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

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

More information

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

http://docs.trendmicro.com

http://docs.trendmicro.com Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,

More information

User Guide. User Guide Title Page Page i

User Guide. User Guide Title Page Page i User Guide User Guide Title Page Page i Table of Contents Welcome 1 Welcome to Avvo Websites 1 Getting Started 2 Accessing your Avvo Website Dashboard 2 Dashboard Features 3 Screen Options 4 Submitting

More information

2011 ithemes Media LLC. All rights reserved in all media. May be shared with copyright and credit left intact

2011 ithemes Media LLC. All rights reserved in all media. May be shared with copyright and credit left intact Meet Builder. Introducing ithemes Builder, the innovative WordPress theme that operates more like web design software. Unlike other premium WordPress themes, Builder stretches the possibilities of WordPress

More information

Integrated HD Setup and Installation

Integrated HD Setup and Installation Integrated HD Setup and Installation This document explains how to set up install the Integrated Help Desk. Areas where special technical knowledge are required are identified with an asterisk. Plugin

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

1 open source' I community experience distilled. Piwik Web Analytics Essentials. Stephan A. Miller

1 open source' I community experience distilled. Piwik Web Analytics Essentials. Stephan A. Miller Piwik Web Analytics Essentials A complete guide to tracking visitors on your websites, e-commerce shopping carts, and apps using Piwik Web Analytics Stephan A. Miller [ PUBLISHING 1 open source' I community

More information

This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications.

This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications. 20486B: Developing ASP.NET MVC 4 Web Applications Course Overview This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications. Course Introduction Course Introduction

More information

Developing ASP.NET MVC 4 Web Applications Course 20486A; 5 Days, Instructor-led

Developing ASP.NET MVC 4 Web Applications Course 20486A; 5 Days, Instructor-led Developing ASP.NET MVC 4 Web Applications Course 20486A; 5 Days, Instructor-led Course Description In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5

More information

Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu)

Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu) Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu) Updated on 10/17/2014 Table of Contents About... 4 Who Can Use It... 4 Log into Ingeniux... 4 Using Ingeniux

More information

Support Documentation

Support Documentation Support Documentation WP-Live-Chat-Support 2/5/2014 This document is here to help WordPress Users and Developers Install and Troubleshoot WP-Live- Chat-Support Contents General Info Before you begin...

More information

UOFL SHAREPOINT ADMINISTRATORS GUIDE

UOFL SHAREPOINT ADMINISTRATORS GUIDE UOFL SHAREPOINT ADMINISTRATORS GUIDE WOW What Power! Learn how to administer a SharePoint site. [Type text] SharePoint Administrator Training Table of Contents Basics... 3 Definitions... 3 The Ribbon...

More information

Office 365 SharePoint Setup and Admin Guide

Office 365 SharePoint Setup and Admin Guide Setup and Admin Guide Contents About this guide... 2 Introduction to SharePoint... 2 SharePoint sites... 3 Team sites, Websites and personal sites... 3 Site structures... 4 Choosing a site structure...

More information

WebLink 3 rd Party Integration Guide

WebLink 3 rd Party Integration Guide 1. Introduction WebLink provides the world s leading online Chamber and Association Management Software: WebLink Connect. While WebLink does provide custom website design and hosting services, WebLink

More information

HDAccess Administrators User Manual. Help Desk Authority 9.0

HDAccess Administrators User Manual. Help Desk Authority 9.0 HDAccess Administrators User Manual Help Desk Authority 9.0 2011ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the ScriptLogic logo and Point,Click,Done! are trademarks and registered trademarks

More information

A set-up guide and general information to help you get the most out of your new theme.

A set-up guide and general information to help you get the most out of your new theme. Blox. A set-up guide and general information to help you get the most out of your new theme. This document covers the installation, set up, and use of this theme and provides answers and solutions to common

More information

Configuring the JEvents Component

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

More information

... Asbru Web Content Management System. Getting Started. Easily & Inexpensively Create, Publish & Manage Your Websites

... Asbru Web Content Management System. Getting Started. Easily & Inexpensively Create, Publish & Manage Your Websites Asbru Ltd Asbru Ltd wwwasbrusoftcom info@asbrusoftcom Asbru Web Content Easily & Inexpensively Create, Publish & Manage Your Websites 31 March 2015 Copyright 2015 Asbru Ltd Version 92 1 Table of Contents

More information

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY Advanced Web Development Duration: 6 Months SCOPE OF WEB DEVELOPMENT INDUSTRY Web development jobs have taken thе hot seat when it comes to career opportunities and positions as a Web developer, as every

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

HTML5. Turn this page to see Quick Guide of CTTC

HTML5. Turn this page to see Quick Guide of CTTC Programming SharePoint 2013 Development Courses ASP.NET SQL TECHNOLGY TRAINING GUIDE Visual Studio PHP Programming Android App Programming HTML5 Jquery Your Training Partner in Cutting Edge Technologies

More information

1 Classified Script. User Guide v1.0

1 Classified Script. User Guide v1.0 1 Classified Script User Guide v1.0 Installation... 3 Create Database... 3 Grant Rights... 4 Configure Settings... 5 Step 1... 5 Step 2... 6 Step 3... 7 Post Sponsored Ad... 8 Step 1... 8 Step 2... 9 Manage

More information

FORTIS. User Guide. Fully responsive flexible Magento theme by Infortis. Copyright 2012-2013 Infortis. All rights reserved

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

More information

1. Manage your Group. 1. Log on to the CampusGroups platform.

1. Manage your Group. 1. Log on to the CampusGroups platform. 1 1. Manage your Group 1. Log on to the CampusGroups platform. 2. Upon logging in, select your club from the Groups drop-down (next to the Home icon) and click on the Manage button next to the group of

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

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

SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME

SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME This document is organized as follows: Chater I. Install ma_sahara_digital8 template Chapter II. Features and elements of the template Chapter III. List of extensions

More information

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For How-to Guide: MIT DLC Drupal Cloud Theme This guide will show you how to take your initial Drupal Cloud site... and turn it into something more like this, using the MIT DLC Drupal Cloud theme. See this

More information

PORTAL ADMINISTRATION

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

More information

WHM Administrator s Guide

WHM Administrator s Guide Fasthosts Customer Support WHM Administrator s Guide This manual covers everything you need to know in order to get started with WHM and perform day to day administrative tasks. Contents Introduction...

More information

Connected Data. Connected Data requirements for SSO

Connected Data. Connected Data requirements for SSO Chapter 40 Configuring Connected Data The following is an overview of the steps required to configure the Connected Data Web application for single sign-on (SSO) via SAML. Connected Data offers both IdP-initiated

More information

Wimba Pronto. Version 3.1. Administrator Guide

Wimba Pronto. Version 3.1. Administrator Guide Wimba Pronto Version 3.1 Administrator Guide Wimba Pronto 3.1 Administrator Guide Overview 1 Accessing the Wimba Pronto Administration Interface 2 Managing Multiple Institutions 3 General Features 4 Configuring

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

User Guide. Chapter 1. SitePublish: Content Management System

User Guide. Chapter 1. SitePublish: Content Management System User Guide Chapter 1 SitePublish: Content Management System Table of Contents About SharpSchool... 4 About this Guide... 4 Who Should Use this Guide... 4 About SitePublish... 5 Accessing your Website...

More information

Open Source Content Management System for content development: a comparative study

Open Source Content Management System for content development: a comparative study Open Source Content Management System for content development: a comparative study D. P. Tripathi Assistant Librarian Biju Patnaik Central Library NIT Rourkela dptnitrkl@gmail.com Designing dynamic and

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

IT Academy Lesson Plan

IT Academy Lesson Plan 10 IT Academy Lesson Plan Microsoft Sharepoint Turn potential into success Microsoft Office SharePoint 2010: Lesson Plans Introduction Preparing to teach courses on Microsoft SharePoint 2010 for the first

More information

nopcommerce User Guide

nopcommerce User Guide nopcommerce User Guide Open source ecommerce solution Version 1.90 Copyright Notice Information in this document, including URL and other Internet Web site references, is subject to change without notice.

More information

WPL: WordPress Property Listing Realtyna Inc.

WPL: WordPress Property Listing Realtyna Inc. 1 WPL: WordPress Property Listing Realtyna Inc. Contents of this manual are applicable to WPL. Details of this manual may be different based on customizations you may have or your software. Introduction

More information

WP Popup Magic User Guide

WP Popup Magic User Guide WP Popup Magic User Guide Plugin version 2.6+ Prepared by Scott Bernadot WP Popup Magic User Guide Page 1 Introduction Thank you so much for your purchase! We're excited to present you with the most magical

More information

Liferay Portal 4.0 - User Guide. Joseph Shum Alexander Chow

Liferay Portal 4.0 - User Guide. Joseph Shum Alexander Chow Liferay Portal 4.0 - User Guide Joseph Shum Alexander Chow Liferay Portal 4.0 - User Guide Joseph Shum Alexander Chow Table of Contents Preface... viii User Administration... 1 Overview... 1 Administration

More information

Kentico CMS Web Parts

Kentico CMS Web Parts Kentico CMS Web Parts Abuse report Abuse report In-line abuse report Articles Article list Attachments Attachment image gallery Document attachments BizForms Blogs BizForm (on-line form) Comment view Recent

More information

SelectSurvey.NET Developers Manual

SelectSurvey.NET Developers Manual Developers Manual (Last updated: 6/24/2012) SelectSurvey.NET Developers Manual Table of Contents: SelectSurvey.NET Developers Manual... 1 Overview... 2 General Design... 2 Debugging Source Code with Visual

More information

Content Management System User Guide

Content Management System User Guide Content Management System User Guide support@ 07 3102 3155 Logging in: Navigate to your website. Find Login or Admin on your site and enter your details. If there is no Login or Admin area visible select

More information

Kentico CMS for.net User Groups

Kentico CMS for.net User Groups FLEXIBLE CONTENT MANAGEMENT SYSTEM FOR ALL YOUR NEEDS Kentico CMS for.net User Groups We have developed a website template for.net User Groups, Windows User Groups and similar groups focused on Microsoft

More information

MASTER DRUPAL 7 MODULE DEVELOPMENT

MASTER DRUPAL 7 MODULE DEVELOPMENT MASTER DRUPAL 7 MODULE DEVELOPMENT by blair wadman sample available for purchase at http://befused.com/master-drupal/ LESSON 1 INTRODUCTION In this section, you will be introduced to the core Drupal concepts

More information

Programming Fundamentals of Web Applications Course 10958A; 5 Days

Programming Fundamentals of Web Applications Course 10958A; 5 Days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Programming Fundamentals of Web Applications Course 10958A; 5 Days Course

More information

] open source. vtiger CRM. Beginner's Guide. Record and consolidate all your customer information with. I community experience distilled. Ian D.

] open source. vtiger CRM. Beginner's Guide. Record and consolidate all your customer information with. I community experience distilled. Ian D. vtiger CRM Beginner's Guide Record and consolidate all vtiger CRM your customer information with Ian D. Rossi [ PUBLISHING ] open source I community experience distilled BIRMINGHAM MUMBAI Windows Preface

More information

nopcommerce User Guide

nopcommerce User Guide nopcommerce User Guide Open source ecommerce solution Version 2.40 Copyright Notice Information in this document, including URL and other Internet Web site references, is subject to change without notice.

More information

Official Amazon Checkout Extension for Magento Commerce. Documentation

Official Amazon Checkout Extension for Magento Commerce. Documentation Official Amazon Checkout Extension for Magento Commerce Documentation 1. Introduction This extension provides official integration of your Magento store with Inline Checkout by Amazon service. Checkout

More information

User Manual for Web. Help Desk Authority 9.0

User Manual for Web. Help Desk Authority 9.0 User Manual for Web Help Desk Authority 9.0 2011ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the ScriptLogic logo and Point,Click,Done! are trademarks and registered trademarks of ScriptLogic

More information

Joomla/Mambo Community Builder

Joomla/Mambo Community Builder Joomla/Mambo Community Builder Version 1.1 Installation Guide document version 1.1 03.Aug.2007 Copyright No portions of this manual may be reproduced or redistributed without the written consent of the

More information

Choosing the Right Plugins. Ira Horowitz Cornershop Creative @ira_horowitz

Choosing the Right Plugins. Ira Horowitz Cornershop Creative @ira_horowitz Choosing the Right Plugins Ira Horowitz Cornershop Creative @ira_horowitz About Cornershop Creative Online services company that provides excellent design, expert web development, and innovative online

More information

Load testing with. WAPT Cloud. Quick Start Guide

Load testing with. WAPT Cloud. Quick Start Guide Load testing with WAPT Cloud Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. 2007-2015 SoftLogica

More information

JBoss Portal 2.4. Quickstart User Guide

JBoss Portal 2.4. Quickstart User Guide Portal 2.4 Quickstart User Guide Table of Contents Portal - Overview... iii 1. Tutorial Forward...1 2. Installation...2 2.1. Downloading and Installing...2 2.2. Starting Portal...3 3. Portal Terminology...5

More information

Designing portal site structure and page layout using IBM Rational Application Developer V7 Part of a series on portal and portlet development

Designing portal site structure and page layout using IBM Rational Application Developer V7 Part of a series on portal and portlet development Designing portal site structure and page layout using IBM Rational Application Developer V7 Part of a series on portal and portlet development By Kenji Uchida Software Engineer IBM Corporation Level: Intermediate

More information

How to work with the WordPress themes

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

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

SAP BusinessObjects Business Intelligence Platform Document Version: 4.1 Support Package 5-2014-11-06. Business Intelligence Launch Pad User Guide

SAP BusinessObjects Business Intelligence Platform Document Version: 4.1 Support Package 5-2014-11-06. Business Intelligence Launch Pad User Guide SAP BusinessObjects Business Intelligence Platform Document Version: 4.1 Support Package 5-2014-11-06 Business Intelligence Launch Pad User Guide Table of Contents 1 Document history....7 2 Getting started

More information

Embedded BI made easy

Embedded BI made easy June, 2015 1 Embedded BI made easy DashXML makes it easy for developers to embed highly customized reports and analytics into applications. DashXML is a fast and flexible framework that exposes Yellowfin

More information