What will you find here?

Size: px
Start display at page:

Download "What will you find here?"

Transcription

1 Getting Started With PHPMagic PHPMagic is a Application Development (RAD) tool for generating advanced PHP applications that connect to and manage data of MySQL databases. It also generates PHP code for creating the database itself as well. Once you get used to PHPMagic (which takes no time), you'll be able to create amazingly powerful web database applications -- even if you know nothing about PHP, SQL, MySQL, html,... etc. PHPMagic does it all for you, automatically. PHPMagic 3 is the result of hundreds of user comments and feedback from people who used previous versions of PHPMagic. It is a whole new rebuild with many added features and a completely new and exciting look. What will you find here? A step-by-step guide to creating an online music database using PHPMagic. A guide to using the generated pages and dealing with the database. A last word.

2 Creating your music albums online collection G E T T I N G S T A R T E D W I T H P H P M A G I C In this section, I'll walk you through the simple steps needed to create your first PHPMagic application. We'll consider a real-world database application as an example: A music albums collection. I have lots of music CDs that are actually collections of various singers. And I find it really hard sometimes to find a song that I wish to listen to. So, let's begin to create an application to manage this task. It shall also have the advantage of being an online application, which means you can put it on your web server and allow your friends to view it instead of asking you every time they want to borrow a CD if you have that song named bla bla bla. We'll create a Singers table, a CDs table and a Songs table. You might wonder: Why don't I create one table for all the data?? Well... dividing the data into several tables instead of one is called data normalization. Data normalization helps decrease the database size and retain data integrity. In brief, you create a table for each object in your system. So, songs are an object, singers another object and CDs a third object. For more information about data normalization and other relational database design issues, I recommend you read the great tutorial by Selena Sol on databasejournal.com. (If you are not familiar with database design concepts, I highly recommend you check this tutorial before you continue reading this guide). 2

3 Singers table shall have four fields: Singer number (automatically-incremented primary key) Singer name Country Comments CDs table shall have these fields: CD number (automatically-incremented primary key) Creation date CD name (I like to give names to my CDs: Meditation, Night slows, Shadow,.. etc) Comments And Songs table shall have these fields: Song Number (automatically-incremented primary key) Song name Singer (a foreign key field that accepts data only if it matches 'Singer number' field of the Singers table) CD (a foreign key field that accepts data only if it matches 'CD number' field of the CDs table) Are you ready to begin now? Great.. let's go on step by step

4 When you start PHPMagic, you see an empty working area. Click on the 'New Project' icon to start a new project. Please note: This screenshot and all others are taken from PHPMagic version 1.0. Some icons you see have been changed in later versions of PHPMagic and the Trial version. However, you can create the entire example application shown here using the free trial version. Many new features have been added but the functionality is basically the same. This is simply a demo of how the application works. 4

5 The project window is displayed. It has two panels. The left panel is the Project Browser and contains a hierarchical view of your database. Now it has only one item: the database itself. The default name of the database is new_db. The right panel is the Properties panel and it contains information about the currently-highlighted item in the Project Browser. 5

6 Click twice (but not double-click) on the item 'new_db', or press F2, to change the database name. We ll change it to 'music'. 6

7 After typing the new name, click anywhere in the window to accept the new name. 7

8 We then define the connection parameters for the database. Simply type the server name or IP, the username and the password in the Properties panel. If you don't know these values, contact your server administrator. 8

9 Next, we create the tables of the database. Click on the 'New Table' icon. 9

10 Now 'table1' is created. To change its name highlight the table in the Project Browser and press F2 or click on it. 10

11 We rename it to 'singers'. 11

12 We'll create another table, 'cds' in the same manner. 12

13 We ll rename the table to cds. 13

14 And another table that we will rename to 'songs' in the same way as shown before. 14

15 We'll adjust some properties for each table now. The Caption property is the title of the table that users of your application will see. Users won t see the actual name of the table since it has many restrictions (lower case letters, no spaces, no special characters,.. etc). But the caption can be almost anything you want (except single quotation marks). You ll see this same behavior in field names too. 15

16 We have just changed the caption of the 'singers' table to 'Singers Table'. 16

17 And the caption of the 'cds' table to 'CDs Table', and 'songs' table to 'Songs Table'. 17

18 We'll now create some fields. We select the 'singers' table and then click on the 'New Field' icon to create a new field in the selected table. Voila! 'field1' is created. We'll change the new field name by selecting it and pressing F

19 We changed the name to 'singer number'. 19

20 We'll now edit some properties of the selected field in the Properties panel. 20

21 The field caption is changed to 'Singer Number'. A field caption is what your application users will see in their browser instead of the field name. 21

22 We checked 'Primary key' so that the selected field becomes the primary key of the table. A primary key is a field used to uniquely identify each record in the table. For example, if we say the record whose primary key field is equal to , then we are talking about one and only one record in the table. The singer number is going to be the primary key field of the singers table in our example. 22

23 Auto Increment means the field will contain an automatic counter that increases whenever a new data record is added to the database. In most cases, primary key fields will also be auto-incremented. 23

24 Let's create some more fields... And we rename it to singer_name in the same way we renamed tables before. 24

25 Singer name will be a text field of type 'VarChar' and length

26 Then we create another field, country, and set its properties... If you have PHPMagic Professional, you can define several countries to choose from in the Value list box. This will let your users choose the country from a drop down menu instead of typing it. 26

27 Here are all the fields created. 'singer' and 'cd' fields of the 'songs' table shall be foreign keys to link the 'songs' table to the 'singers' and 'cds' tables. Let's set this now

28 We set the Parent table to 'singers', Parent ID field to the primary key field of the 'singers' table which is 'singer_number', and Parent caption field to 'singer_name' so that the users see the singer names instead of their serial numbers. Please note that the data type of the foreign key field must match that of its parent id field. 28

29 We do the same with 'cd' field. 29

30 That's all! Your project is ready for generation of the PHP application. Click on the 'Generate PHP code' icon, or press F

31 Click the 'Exit' icon to quit PHPMagic. The next step is to upload the application to your web server and set it up. ( 31

32 Using The Generated PHP Application This is the main page of the generated PHP application. It contains links to all the tables we created in our PHPMagic project. TIP! If you wish to change the look of this page, you can look for the file index.html in the generated files folder and open it in your favorite HTML editor and perform your magic! 32

33 We shall try to view the 'Singers Table' page now. 33

34 Oops!! We forgot to set up the database before trying to view its tables. However, PHPMagic reminds us of doing so and provides a link to the setup page. 34

35 We'll click on the link to set up the database. 35

36 Here we are! The database is created together with all the tables. 36

37 We'll click on the provided link to return to the main page. 37

38 And we click the 'Singers Table' again. 38

39 This time it's working. We see now the 'Singers Table' page. Here we can view data records, add new records, edit and delete existing records, sort and filter records. But since this table is new, it is still empty. We shall now add a new data record. 39

40 The Detail View at the bottom of the table allows us to enter data for the new record. Note that the 'Country' field has a menu of allowable data values. This was done in PHPMagic Professional Edition by defining a values list for this field. 40

41 We now click the 'Add New Record' button to save data to the table. 41

42 The new record shows up in the table now. It is highlighted by a white background to indicate that it is the currently selected record. Observe the new buttons that appear in the Detail View. Notice also that Singer Number was automatically set to '1' since we defined this field as 'Auto Increment' in PHPMagic. 42

43 We continue adding data records in the same manner. 43

44 To select any record in the table for editing or deleting, simply click on it. We shall select 'Micheal Jakson' and edit his data. 44

45 'Micheal Jakson' is now highlighted. The field data appear in the Detail View. 45

46 We add a comment and then save changes by clicking the 'Update Record' button. 46

47 The table is updated. 47

48 We'll select another record. 48

49 We'll delete 'Britney' from the table by clicking the 'Delete Record' button. 49

50 A delete confirmation window pops up. We'll click 'Ok'. 50

51 The record is removed from the table. 51

52 The 'Print' button displays the table without the buttons and the detail view so that users can print it. We'll click this button now. 52

53 This is the printer-friendly view. You can use your broswer's Back button to return to the previous view. 53

54 The 'Edit Filters' button displays a filters page so that we can search the data in the table according to criteria we'll define. 54

55 This is the filters page. We may define up to 10 filters. A filter begins with an 'And' or 'Or' to indicate how the filter is combined with other filters. Filters consist of a field name, a comparison operator and a comparison value

56 For example, here we want to view singers from USA only. 56

57 To apply your filter(s), click the 'Apply Filters' button. 57

58 Here we are! 58

59 The 'Clear Filters' button removes all filters. 59

60 The table shows all data now without filters. 60

61 PHPMagic allows us to sort data by any field. Simply click on the field header. 61

62 Data is now sorted ascendingly by singer name. 62

63 If we click the 'Singer Name' header again, sorting will be discending. 63

64 Here it is! 64

65 The 'Select A Table' menu allows you to view any other table by selecting it. By now we have reached the end of our Getting Started guide. Try PHPMagic on your own now and see for yourself the possibilites and powers. Context help is availble everywhere in PHPMagic by clicking F1 anytime. Enjoy! 65

66 A Last Word. By now, I m sure you have realized the power of PHPMagic. Many PHPMagic users create powerful web-enabled databases having tens and even hundreds of tables. You can do it without a single line of code. No need to spend hundreds of hours writing SQL, PHP or HTML code. No need to hire expensive programmers to do it for you either. And even if you need to customize the generated files, you know you won t have to start from scratch. You know that you have already saved yourself tons of programming time and effort. The generated code is very neat and easy to understand. Many customers told us that they used it to learn PHP! Now, think of it: Isn t saving yourself hundreds of hours in programming, thousands of dollars in programmers costs, endless testing and debugging efforts isn t saving all of these worth a little investment in PHPMagic? Order Now! 66

DbSchema Tutorial with Introduction in SQL Databases

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

More information

Google Docs A Tutorial

Google Docs A Tutorial Google Docs A Tutorial What is it? Google Docs is a free online program that allows users to create documents, spreadsheets and presentations online and share them with others for collaboration. This allows

More information

Chapter 23: Uploading Your Website to the Internet

Chapter 23: Uploading Your Website to the Internet 1 Chapter 23: Uploading Your Website to the Internet After you complete your website, you must upload (save) your site to the internet. Before you upload, Web Studio provides you with options to view your

More information

Invoices & Statements

Invoices & Statements Welcome to My Account a fast and easy way to manage your WinWholesale account online! This tutorial will provide you with step-by-step instructions for accessing and navigating the Invoices and Statements

More information

Content Editor for Personal Web Pages

Content Editor for Personal Web Pages Content Editor for Personal Web Pages Welcome to the MyNikken tutorial with a step-by-step guide for using your web page manager. The webpages toolbar offers you a number of ways to customize your site.

More information

Microsoft Outlook. Transition from the ECS Exchange Server to the University Exchange Server. ECS Computing Services August 21, 2012 Version 3.

Microsoft Outlook. Transition from the ECS Exchange Server to the University Exchange Server. ECS Computing Services August 21, 2012 Version 3. Microsoft Outlook Transition from the ECS Exchange Server to the University Exchange Server ECS Computing Services August 21, 2012 Version 3.3 1 Table of Contents Transition Process... 4 What is going

More information

Most of your tasks in Windows XP will involve working with information

Most of your tasks in Windows XP will involve working with information OFFICE 1 File Management Files and Folders Most of your tasks in Windows XP will involve working with information stored on your computer. This material briefly explains how information is stored in Windows

More information

X10 Webinterface User Quick Guide(ver0.9.2 Beta)

X10 Webinterface User Quick Guide(ver0.9.2 Beta) X10 Webinterface User Quick Guide(ver0.9.2 Beta) NOTE 1 : Please make sure that the firmware version installed in your X10 should be R1663 or higher version(in future) for Webinterface proper working.

More information

DIY Email Manager User Guide. http://www.diy-email-manager.com

DIY Email Manager User Guide. http://www.diy-email-manager.com User Guide http://www.diy-email-manager.com Contents Introduction... 3 Help Guides and Tutorials... 4 Sending your first email campaign... 4 Adding a Subscription Form to Your Web Site... 14 Collecting

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

Managing documents, files and folders

Managing documents, files and folders Managing documents, files and folders Your computer puts information at your fingertips. Over time, however, you might have so many files that it can be difficult to find the specific file you need. Without

More information

FireBLAST Email Marketing Solution v2

FireBLAST Email Marketing Solution v2 Installation Guide WELCOME to fireblast, one of the Industry s leading Email Marketing Software Solutions for your business. Whether you are creating a small email campaign, or you are looking to upgrade

More information

www.nuvox.net, enter the administrator user name and password for that domain.

www.nuvox.net, enter the administrator user name and password for that domain. Page 1 of 7 Cute_FTP Server Names and Authentication Before connecting to an FTP site you need three pieces of information: the server name or the site you are connecting to and a user name and password.

More information

Installing Drupal on Your Local Computer

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

More information

Backing Up and Deleting Files

Backing Up and Deleting Files CHAPTER 5 Backing Up and Deleting Files Video files can be copied from the hard disk to external storage media, such as CD-R, DVD, MO, or ZIP drives. Video files saved on the hard disk can be easily deleted

More information

Fleet Maintenance Software

Fleet Maintenance Software Fleet Maintenance Software Welcome Thank you for taking time to review FleetWise VB Maintenance Management Made Simple. This guide is intended to provide a quick overview of installing the software and

More information

Backing up with Windows 7

Backing up with Windows 7 Backing up your data should be a high priority; it is far too easy for computer failure to result in the loss of data. All hard drives will eventually fail, and (at the minimum) you should be prepared

More information

BlackBerry Internet Service Using the Browser on Your BlackBerry Smartphone Version: 2.8

BlackBerry Internet Service Using the Browser on Your BlackBerry Smartphone Version: 2.8 BlackBerry Internet Service Using the Browser on Your BlackBerry Smartphone Version: 2.8 User Guide SWDT653811-793266-0827104650-001 Contents Getting started... 3 About messaging service plans for BlackBerry

More information

Microsoft Office 365 Outlook Web App (OWA)

Microsoft Office 365 Outlook Web App (OWA) CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Office 365 Outlook Web App (OWA) Spring 2013, Version 1.0 Table of Contents Introduction...3 Signing In...3 Navigation

More information

Hypercosm. Studio. www.hypercosm.com

Hypercosm. Studio. www.hypercosm.com Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks

More information

Setting up a site directly to the H-drive in Dreamweaver CS4

Setting up a site directly to the H-drive in Dreamweaver CS4 Department of Technology Assistance Overview: This document will describe how to setup a personal website via the H-drive at RU using Dreamweaver

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

Microsoft Outlook 2000 Configuration Creation of a SPAM Filter

Microsoft Outlook 2000 Configuration Creation of a SPAM Filter Microsoft Outlook 2000 Configuration Creation of a SPAM Filter This user guide aims to equip and facilitates users in creation of SPAM filtering mechanism to counter the ever increasing SPAM emails received

More information

Apple Mac Fundamentals: A Tutorial. Updated 24/4/2013 By Mac Thing enquiries@macthing.co.uk http://www.macthing.co.uk. Table of Contents:

Apple Mac Fundamentals: A Tutorial. Updated 24/4/2013 By Mac Thing enquiries@macthing.co.uk http://www.macthing.co.uk. Table of Contents: Apple Mac Fundamentals: A Tutorial. Updated 24/4/2013 By Mac Thing enquiries@macthing.co.uk http://www.macthing.co.uk Table of Contents: 1) The Macintosh HD 2) Your Home Directory 3) The Finder 4) The

More information

A Reseller s Guide to Using Helm

A Reseller s Guide to Using Helm tm H E L M A Reseller s Guide to Using Helm Table of Contents About HELM & This Guide 3 Logging Into HELM 3 Changing Your Password 4 Customizing Your Control Panel 4 Step 1: Global Settings 5 Step 2: Domain

More information

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

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

More information

Making a Website with Hoolahoop

Making a Website with Hoolahoop Making a Website with Hoolahoop 1) Open up your web browser and goto www.wgss.ca/admin (wgss.hoolahoop.net temporarily) and login your the username and password. (wgss.ca is for teachers ONLY, you cannot

More information

X10 Webinterface User Guide(ver0.9)

X10 Webinterface User Guide(ver0.9) X10 Webinterface User Guide(ver0.9) CAUTION : Please FW R1644 or higher version before using the Webinterface. 1. How to start Webinterface and set it up. 1 Go to SETUP on X10 and set Web Server as ON

More information

How to Create and Send a Froogle Data Feed

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

More information

BulkSMS Text Messenger Product Manual

BulkSMS Text Messenger Product Manual BulkSMS Text Messenger Product Manual 1. Installing the software 1.1. Download the BulkSMS Text Messenger Go to www.bulksms.com and choose your country. process. Click on products on the top menu and select

More information

Quick Start Guide. Installation and Setup

Quick Start Guide. Installation and Setup Quick Start Guide Installation and Setup Introduction Velaro s live help and survey management system provides an exciting new way to engage your customers and website visitors. While adding any new technology

More information

How to Configure Outlook 2003 to connect to Exchange 2010

How to Configure Outlook 2003 to connect to Exchange 2010 How to Configure Outlook 2003 to connect to Exchange 2010 Outlook 2003 will install and work correctly on any version of Windows XP, Vista, Windows 7 or Windows 8. These instructions describe how to setup

More information

Email Basics. For more information on the Library and programs, visit www.bcpls.org BCPLS 08/10/2010 PEMA

Email Basics. For more information on the Library and programs, visit www.bcpls.org BCPLS 08/10/2010 PEMA Email Basics Email, short for Electronic Mail, consists of messages which are sent and received using the Internet. There are many different email services available that allow you to create an email account

More information

Getting Started - The Control Panel

Getting Started - The Control Panel Table of Contents 1. Getting Started - the Control Panel Login Navigation Bar Domain Limits Domain User Account Properties Session Management 2. FTP Management Creating and Editing Users Accessing FTP

More information

91.527 - Human Computer Interaction Final Project Tutorial. Hardware Inventory Management System (HIMS) By M. Michael Nourai

91.527 - Human Computer Interaction Final Project Tutorial. Hardware Inventory Management System (HIMS) By M. Michael Nourai 91.527 - Human Computer Interaction Final Project Tutorial Hardware Inventory Management System (HIMS) By Table of Contents Introduction... 3 Running HIMS... 3 Successful Login to HIMS... 4 HIMS Main Screen...

More information

Stores copies of items you sent to others, by default. Stores items created offline that you want to send the next time you are online

Stores copies of items you sent to others, by default. Stores items created offline that you want to send the next time you are online Outlook Folders: All new messages are stored in Inbox unless rules are created. Stores copies of items you sent to others, by default Stores temporarily deleted items until you permanently delete or retrieve

More information

SiteBuilder 2.1 Manual

SiteBuilder 2.1 Manual SiteBuilder 2.1 Manual Copyright 2004 Yahoo! Inc. All rights reserved. Yahoo! SiteBuilder About This Guide With Yahoo! SiteBuilder, you can build a great web site without even knowing HTML. If you can

More information

GUIDEWIRE. Introduction to Using WebMail. macrobatix. Learn how to: august 2008

GUIDEWIRE. Introduction to Using WebMail. macrobatix. Learn how to: august 2008 macrobatix GUIDEWIRE august 2008 Introduction to Using WebMail Learn how to: Manage Your Inbox Compose a Message Activate Spam Filter Modify Spam Settings Check Held Messages *To download the complete

More information

Overview... 2 How to Add New Documents... 3 Adding a Note / SMS or Phone Message... 3 Adding a New Letter... 4. How to Create Letter Templates...

Overview... 2 How to Add New Documents... 3 Adding a Note / SMS or Phone Message... 3 Adding a New Letter... 4. How to Create Letter Templates... THE DOCUMENT MANAGER Chapter 14 THE DOCUMENT MANAGER CONTENTS Overview... 2 How to Add New Documents... 3 Adding a Note / SMS or Phone Message... 3 Adding a New Letter... 4 How to Create Letter Templates...

More information

Email User Manual. [Outlook Web App 2013]

Email User Manual. [Outlook Web App 2013] [Outlook Web App 2013] Central Information Systems Division March 2014 Table of Contents 1. To Login... 4 2. To Logout... 5 3. Change Password... 5 4. Email Messaging... 6 4.1 Create a New Mail... 6 4.2

More information

CEFNS Web Hosting a Guide for CS212

CEFNS Web Hosting a Guide for CS212 CEFNS Web Hosting a Guide for CS212 INTRODUCTION: TOOLS: In CS212, you will be learning the basics of web development. Therefore, you want to keep your tools to a minimum so that you understand how things

More information

Generating Open For Business Reports with the BIRT RCP Designer

Generating Open For Business Reports with the BIRT RCP Designer Generating Open For Business Reports with the BIRT RCP Designer by Leon Torres and Si Chen The Business Intelligence Reporting Tools (BIRT) is a suite of tools for generating professional looking reports

More information

Install MS SQL Server 2012 Express Edition

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

More information

This document details the following four steps in setting up a Web Server (aka Internet Information Services -IIS) on Windows XP:

This document details the following four steps in setting up a Web Server (aka Internet Information Services -IIS) on Windows XP: Wazza s QuickStart: Setting up a Web Server (IIS) Windows XP This document details the following four steps in setting up a Web Server (aka Internet Information Services -IIS) on Windows XP: Configuring

More information

System Administration and Log Management

System Administration and Log Management CHAPTER 6 System Overview System Administration and Log Management Users must have sufficient access rights, or permission levels, to perform any operations on network elements (the devices, such as routers,

More information

Parallels Plesk Panel User Guide

Parallels Plesk Panel User Guide Parallels Plesk Panel User Guide Page 1 of 31 Parallels Plesk Panel User Guide Table of contents Parallels Plesk Panel User Guide... 2 Table of contents... 2 Introduction... 3 Before you begin... 3 Logging

More information

How to Setup and Connect to an FTP Server Using FileZilla. Part I: Setting up the server

How to Setup and Connect to an FTP Server Using FileZilla. Part I: Setting up the server How to Setup and Connect to an FTP Server Using FileZilla The ability to store data on a server and being able to access the data from anywhere in the world has allowed us to get rid of external flash

More information

- Training. Getting Started with Outlook 2003. Information Technology Services - Training The University of Texas at Austin

- Training. Getting Started with Outlook 2003. Information Technology Services - Training The University of Texas at Austin - Training Getting Started with Outlook 2003 Information Technology Services - Training The University of Texas at Austin http://www.utexas.edu/its/training 2007 Information Technology Services The University

More information

Concentsus Online Backup User Manual

Concentsus Online Backup User Manual Concentsus Online Backup User Manual Concentsus Small Business 5252 Edgewood Drive, Suite 250 Provo, UT 84604 888-889-9949 www.concentsus.com 2008 Concentsus, a service of efilecabinet, LC All Rights Reserved.

More information

MySQL quick start guide

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

More information

TREND series H.264 DVR Central Management System Quick User Guide

TREND series H.264 DVR Central Management System Quick User Guide TREND series H.264 DVR Central Management System Quick User Guide Table of Contents 1. Introduction... 2 2. Install CMS/NVMS Software... 3 3. Create DVR Device... 9 3.1 Add DVR to CMS... 9 3.2 DVR Automatically

More information

Baylor Secure Messaging. For Non-Baylor Users

Baylor Secure Messaging. For Non-Baylor Users Baylor Secure Messaging For Non-Baylor Users TABLE OF CONTENTS SECTION ONE: GETTING STARTED...4 Receiving a Secure Message for the First Time...4 Password Configuration...5 Logging into Baylor Secure Messaging...7

More information

A User s Guide to Helm

A User s Guide to Helm A User s Guide to Helm WebHost Automation Ltd http://www.webhostautomation.com/ January 2006 Doc: HELM300.02.09 Complying with all applicable copyright laws is the responsibility of the user. Without limiting

More information

Google Apps for Sharing Folders and Collecting Assignments

Google Apps for Sharing Folders and Collecting Assignments Google Apps for Sharing Folders and Collecting Assignments The Google Drive is cloud (online) storage space, and it is also where you create and work with Google Docs, Sheets, Slides, etc. Create a Folder

More information

IBM/Softlayer Object Storage for Offsite Backup

IBM/Softlayer Object Storage for Offsite Backup IBM/Softlayer Object Storage for Offsite Backup How to use IBM/Softlayer Object Storage for Offsite Backup How to use IBM/Softlayer Object Storage for Offsite Backup IBM/Softlayer Object Storage is a redundant

More information

Webmail Instruction Guide

Webmail Instruction Guide Webmail Instruction Guide This document is setup to guide your through the use of the many features of our Webmail system. You may either visit www.safeaccess.com or webmail.safeaccess.com to login with

More information

Getting Started with Dynamic Web Sites

Getting Started with Dynamic Web Sites PHP Tutorial 1 Getting Started with Dynamic Web Sites Setting Up Your Computer To follow this tutorial, you ll need to have PHP, MySQL and a Web server up and running on your computer. This will be your

More information

So you want to create an email-to-target action targeting top tier councillors...

So you want to create an email-to-target action targeting top tier councillors... So you want to create an email-to-target action targeting top tier councillors... This help file will take you through all the steps on how to create a campaign action targeting top tier local councillors,

More information

Chapter 1: Introduction

Chapter 1: Introduction 1 Chapter 1: Welcome to Web Studio 5.0! As you become acquainted with this program, you will be impressed with how easy it is to create professional-looking websites in a fraction of the time it takes

More information

16.4.3 Lab: Data Backup and Recovery in Windows XP

16.4.3 Lab: Data Backup and Recovery in Windows XP 16.4.3 Lab: Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment The

More information

Strategic Asset Tracking System User Guide

Strategic Asset Tracking System User Guide Strategic Asset Tracking System User Guide Contents 1 Overview 2 Web Application 2.1 Logging In 2.2 Navigation 2.3 Assets 2.3.1 Favorites 2.3.3 Purchasing 2.3.4 User Fields 2.3.5 History 2.3.6 Import Data

More information

Intellect Platform - Tables and Templates Basic Document Management System - A101

Intellect Platform - Tables and Templates Basic Document Management System - A101 Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System

More information

Microsoft Office 365 Outlook Web App (OWA)

Microsoft Office 365 Outlook Web App (OWA) CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Office 365 Outlook Web App (OWA) Winter 2015, Version 2.0 Table of Contents Introduction...3 Logging In...3 Navigation

More information

Customer Control Panel Manual

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

More information

Lesson 7 - Website Administration

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

More information

Creating Database Tables in Microsoft SQL Server

Creating Database Tables in Microsoft SQL Server Creating Database Tables in Microsoft SQL Server Microsoft SQL Server is a relational database server that stores and retrieves data for multi-user network-based applications. SQL Server databases are

More information

First Time Off-Campus Remote Desktop Connection ipad Edition

First Time Off-Campus Remote Desktop Connection ipad Edition First Time Off-Campus Remote Desktop Connection ipad Edition General: This guide is a step-by-step guide for configuring and using an ipad to remotely connect to a work computer from off campus. This guide

More information

PowerSearch for MS CRM 2011

PowerSearch for MS CRM 2011 PowerSearch for MS CRM 2011 Version 5.0 Installation Guide (How to install/uninstall PowerSearch for MS CRM 2011) The content of this document is subject to change without notice. Microsoft and Microsoft

More information

Timeless Time and Expense Version 3.0. Copyright 1997-2009 MAG Softwrx, Inc.

Timeless Time and Expense Version 3.0. Copyright 1997-2009 MAG Softwrx, Inc. Timeless Time and Expense Version 3.0 Timeless Time and Expense All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

Mac Information. How to share files with Apple s MobileMe service

Mac Information. How to share files with Apple s MobileMe service Mac Information How to share files with Apple s MobileMe service Introduction: With MobileMe, Apple s internet services, you can place files online for others to download. This saves your colleague time

More information

Managing Your Emailbox

Managing Your Emailbox Managing Your Emailbox Before you try any of the tips below, the easiest way to decrease your mailbox size is to: Delete emails in your Sent Folder Empty the deleted items folder (right click on deleted

More information

RoboMail Mass Mail Software

RoboMail Mass Mail Software RoboMail Mass Mail Software RoboMail is a comprehensive mass mail software, which has a built-in e-mail server to send out e-mail without using ISP's server. You can prepare personalized e-mail easily.

More information

SharePoint List Filter Favorites Installation Instruction

SharePoint List Filter Favorites Installation Instruction SharePoint List Filter Favorites Installation Instruction System Requirements Microsoft Windows SharePoint Services v3 or Microsoft Office SharePoint Server 2007. License Management Click link in Organize

More information

So you want to create an Email a Friend action

So you want to create an Email a Friend action So you want to create an Email a Friend action This help file will take you through all the steps on how to create a simple and effective email a friend action. It doesn t cover the advanced features;

More information

First Time On-Campus Remote Desktop Connection ipad Edition

First Time On-Campus Remote Desktop Connection ipad Edition First Time On-Campus Remote Desktop Connection ipad Edition General: This guide is a step-by-step guide for configuring and using an ipad to remotely connect to a work computer from on campus. This guide

More information

MiraCosta College now offers two ways to access your student virtual desktop.

MiraCosta College now offers two ways to access your student virtual desktop. MiraCosta College now offers two ways to access your student virtual desktop. We now feature the new VMware Horizon View HTML access option available from https://view.miracosta.edu. MiraCosta recommends

More information

i>clicker v7 Gradebook Integration: Blackboard Learn Instructor Guide

i>clicker v7 Gradebook Integration: Blackboard Learn Instructor Guide i>clicker v7 Gradebook Integration: Blackboard Learn July 2015 Table of Contents Overview... 3 Step 1: Prepare a Configured Version of i>clicker... 4 Step 2: Configure your i>clicker Software... 5 Step

More information

emarketing Manual- Creating a New Email

emarketing Manual- Creating a New Email emarketing Manual- Creating a New Email Create a new email: You can create a new email by clicking the button labeled Create New Email located at the top of the main page. Once you click this button, a

More information

The Citrix service is now available to faculty and staff at Cypress College.

The Citrix service is now available to faculty and staff at Cypress College. Hello Everyone, The Citrix service is now available to faculty and staff at Cypress College. The Citrix product will allow you to run Microsoft Windows applications through the web as if you were running

More information

Unified Monitoring Portal Online Help Account Admin

Unified Monitoring Portal Online Help Account Admin Unified Monitoring Portal Online Help Account Admin This PDF file contains content from the Unified Monitoring Portal (UMP) Online Help system. It is intended only to provide a printable version of the

More information

Beginner s Guide to AIA Contract Documents Online Service for Single-Seat Users

Beginner s Guide to AIA Contract Documents Online Service for Single-Seat Users Beginner s Guide to AIA Contract Documents Online Service for Single-Seat Users Table of Contents Getting Started - Introducing ACD5- AIA Contract Documents New Online Service System Requirements Transitioning

More information

HOW TO SETUP AN APACHE WEB SERVER AND INTEGRATE COLDFUSION

HOW TO SETUP AN APACHE WEB SERVER AND INTEGRATE COLDFUSION HOW TO SETUP AN APACHE WEB SERVER AND INTEGRATE COLDFUSION Draft version 1.0 July 15 th 2010 Software XAMPP is an open source package designed to take almost all the work out of setting up and integrating

More information

Quick Start Guide. Hosting Your Domain

Quick Start Guide. Hosting Your Domain Quick Start Guide Hosting Your Domain http://www.names.co.uk/support/ Table of Contents Web Hosting... 3 FTP (File Transfer Protocol)... 3 File Manager... 6 SiteMaker... 7 2 Please keep these documents

More information

Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website

Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website April 16 2012 The following instructions are to show you how to map your Home drive using ITS s Network in order to publish a website

More information

Managing Files. On a PC, after you find your file, right click it and selet Rename from the pop-up menu.

Managing Files. On a PC, after you find your file, right click it and selet Rename from the pop-up menu. Managing Files File Types, Renaming Files The software you are using will automatically save your file as the type that applies to your current application. For Microsoft Word documents, for example, will

More information

Results CRM 2012 User Manual

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

More information

10 Step Guide to Getting Started with BOI Business On Line. Business On Line. 10 Step Guide to Getting Started. A BOL Setup Guide. v.

10 Step Guide to Getting Started with BOI Business On Line. Business On Line. 10 Step Guide to Getting Started. A BOL Setup Guide. v. Business On Line 10 Step Guide to Getting Started A BOL Setup Guide v.11/13 This Document is published by Bank of Ireland, and both it, and its contents, are the property of Bank of Ireland. Page 1 of

More information

How to Configure Outlook 2007 to connect to Exchange 2010

How to Configure Outlook 2007 to connect to Exchange 2010 How to Configure Outlook 2007 to connect to Exchange 2010 Outlook 2007 will install and work correctly on any version of Windows XP, Vista, Windows 7 or Windows 8. These instructions describe how to setup

More information

INTRODUCTION TO EMAIL: & BASICS

INTRODUCTION TO EMAIL: & BASICS University of North Carolina at Chapel Hill Libraries Chapel Hill Public Library Carrboro Branch Library Carrboro Cybrary Durham Public Library INTRODUCTION TO EMAIL: & BASICS Getting Started Page 02 Prerequisites

More information

VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007

VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007 VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007 Rocksalt International Pty Ltd support@vpasp.com www.vpasp.com Table of Contents 1 INTRODUCTION... 3 2 FEATURES... 4 3 WHAT

More information

TAMUS Terminal Server Setup BPP SQL/Alva

TAMUS Terminal Server Setup BPP SQL/Alva We have a new method of connecting to the databases that does not involve using the Texas A&M campus VPN. The new way of gaining access is via Remote Desktop software to a terminal server running here

More information

CSC9B2 Spring 2015 Web Design Practical 1: Introduction to HTML 5

CSC9B2 Spring 2015 Web Design Practical 1: Introduction to HTML 5 CSC9B2 Spring 2015 Web Design Practical 1: Introduction to HTML 5 AIM To learn the basics of creating web pages with HTML5. Remember to register your practical attendance. This sheet contains one checkpoint.

More information

Mozilla Mail. Created by Holly Robertson and Quinn Stewart Spring 2004 IT Lab, School of Information University of Texas at Austin

Mozilla Mail. Created by Holly Robertson and Quinn Stewart Spring 2004 IT Lab, School of Information University of Texas at Austin Mozilla Mail Created by Holly Robertson and Quinn Stewart Spring 2004 IT Lab, School of Information University of Texas at Austin Mozilla is an open source suite of applications used for web browsing,

More information

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

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

More information

Create a New Database in Access 2010

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...

More information

Remote Viewer Recording Backup

Remote Viewer Recording Backup Remote Viewer Recording Backup Introduction: In this tutorial we will explain how to retrieve your recordings using the Web Service online. Using this method you can backup videos onto your computer using

More information

Windows XP Managing Your Files

Windows XP Managing Your Files Windows XP Managing Your Files Objective 1: Understand your computer s filing system Your computer's filing system has three basic divisions: files, folders, and drives. 1. File- everything saved on your

More information

eyeos Web System User Manual

eyeos Web System User Manual eyeos Web System User Manual Contents 1. Introduction 1.1. Logging in 1.2. Creating a new user 2. The Desktop: First Steps 2.1. The Applications Dock 2.2. The default Desktop Icons 2.2.1. Home Icon 2.2.2.

More information

Dashboard Builder TM for Microsoft Access

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

More information

Tabs3, PracticeMaster, and the pinwheel symbol ( trademarks of Software Technology, Inc. Portions copyright Microsoft Corporation

Tabs3, PracticeMaster, and the pinwheel symbol ( trademarks of Software Technology, Inc. Portions copyright Microsoft Corporation Tabs3 Trust Accounting Software Reseller/User Tutorial Version 16 for November 2011 Sample Data Copyright 1983-2013 Software Technology, Inc. 1621 Cushman Drive Lincoln, NE 68512 (402) 423-1440 http://www.tabs3.com

More information