Online shopping store

Size: px
Start display at page:

Download "Online shopping store"

Transcription

1 Online shopping store 1. Research projects: A physical shop can only serves the people locally. An online shopping store can resolve the geometrical boundary faced by the physical shop. It has other advantages, such as avoidance of high rental cost, etc. You are invited by a fashion company to create an online shopping store. The system must include pages that can let the shop manager to edit the product list and stocks. The system must also allow to customer to shop fashions. 2. Demonstration files Files: To create the online shopping store, one need to create a Web site which has a database for storing relevant information such as user profile and product list. The files below are the component of a simple website. It contains the function of displaying the product list, a login page to let the administrator to add, update or delete a product. file name insertnew.php loginpage.php product_list.php updaterecord.php index.php shopping_store.sql description a page that has a form to insert a new record a login page for administrator to update the product a page to list out the products of the shop a page that has a form to edit the information of the product the index page of the website sql command to create the database 1

2 3. Web Design home admin product list view product shopping cart Figure 1: Hierarchy of the online shopping store When enter the page, a homepage will be seen, it contain the advertisement and the display of the newest products. It can access the admin page, product list page, and the shopping cart page. Under the product list page, it contain view product page that let the customers to view the detail of the products. 2

3 Figure 2: Entity relationship diagram There are two tables inside the database, each of the table has a primary ID. With the admin table, there are two fields to record the username and password. In addition, there are last_log_data which is in date format to record the last login of the administrator. Within the products data, there is product_name, price details, category and subcategory to record the information of the products. Date_added is used to record the data of the product added. The website can then base on this information to display the latest product. Quantity is used to store the number the product that the customer buy. This is also used to calculate the price that the customer should pay for. 3

4 4. Software: Dreamweaver / XAMPP Dreamweaver Link: Description: Figure 3: Dreamweaver logo Adobe Dreamweaver (Figure 3) is a web design and application development tools. Dreamweaver are so popular today is because it offers a What You See Is What You Get (WYSIWYG) editor and code dashboard. It let you build a professional website with basic knowledge of programming. XAMPP: Link: Description: Figure 4: XAMPP logo XAMPP stands for X(cross-platform), Apache, MySQL, PHP, Perl (NoteBlogger, 2013). It is not easy for most of the people to install an Apache web server, it is even harder if you want to add MySQL, PHP and Perl. Many web designer or programmer intend to use this as a development tools. It is easy for them to test their product without any access to the internet. 4

5 5. Solution Since the scale of a website can be very large. This section will only describe how to create a product list page, a page to update the store and an authentication page. Students can open the demonstration files to check which part is not correct. Creating a database Figure 5: Access phpmyadmin Figure 6: Create Database To create a database, start the XAMPP, click on the Admin button. A phpmyadmin page will pop up like the page in Figure 6. Go to the Databases tab and enter the name of the database, after that, click create to create a new database. Inside the database, tables to store the data of product, category of the products, ID and password of the administrators are needed. There are two ways to create tables, one is type in the SQL command. The other is going to the structure tab (Figure 7) and creates the tables. 5

6 Figure 7: Structure tab of phpmyadmin Figure 8: Importing sql to the server As the SQL command already prepared, so go to the import tab to import the shopping_store.sql. Press go button will create the tables. 6

7 Connection between website and database Before creating all the pages, connection between site and database is necessary. To connect the web pages to the database, click on the Databases tab, press the + icon (Figure 9). Figure 9: Add connection After pressing the icon, the following dialogue will pop up. Enter the connection name, the name of the connection name is flexible. However, we need to type in localhost in the MySQL server. Username is root and no need to type in password if no password is set in database before. Click on the select button to select the database which you want to connect with. Figure 10: MySQL Connection dialogue box 7

8 Figure 11: Select the database As the website need to connect with the shopping store database, click on that name and click OK. A folder named Connections is then created. Inside the folder, there is a shopping_store.php which is responsible for the connection between the website and the database. Figure 12: Connection folder 8

9 Product list Create a recordset Product list page is to display the products of your store, which mean fetching the product details from database and display as html. This requires a recordset. A recordset represents a query, it looks like a row of record. Submit a query will return data, recordset and the database fills it in with the first record that matches the predicate clause. When you need the next record, fetch the next row and so on (Jwilliamsoh). As we want to make the page that display a list of products, each product is a recordset, therefore we need to create a recordset inside Dreamweaver. In the Bindings panel, click the plus (+) icon and then select Recordset from the drop-down list that appears (Figure 13). Figure 13: Create recordset 9

10 Figure 14: Recordset dialogue box Enter the name of the recordset in the Name field (Jenkins & Wagner). Select the product in the Table field, as the product ID is not necessary to display in the product list page, only select product_name, price and category. Click OK to create the recordset. 10

11 Display the product Make a table with three rows that is used to display the product name, price and category (Figure 15). Drag the product_name, price, and category to the table (Figure 16). Figure 15: Table with three rows Figure 16: The resulting table 11

12 At this stage, this page only display a record only, to display all the records needs to define the repeating region. To define the repeating region, select the div which include table. Go to insert, data objects, repeat region. Figure 17: Repeat region dialogue box You can select a limited number of records at a time or all records (Figure 17). Click OK to create the repeat region. 12

13 Building pages to update the product list This section is focus on editing the pages such that the administrator can edit or delete the product in the database. Create a page to insert a new record Create a new php insertnew.php. As we can predict, one of the field of the insertion form include a list menu which let the administrator to select the category of the product. Later sections will mention that to create this list menu, we need to create a recordset based on the category table.the method of creating a recordset is already mentioned before. Students can follow the previous section to create the recordset. After the recordset is created, go to insert >Data objects > Insert Record> Record Insertion from Wizard. Figure 18: Record Insertion Form Select the product_list.php in the After inserting, go to: field indicate after insert a new record, it will jump to product_list page. As we do not need to enter the productid in the form by ourselves, select the productid1 and click - icon. 13

14 Figure 19: Adjust the display of category Instead of typing the category, we want the administrator is to choose a category from a list menu. For this reason, change from display as Text field to display as Menu (Figure 19). Click on the menu properties button, a dialogue box will pop out (Figure 20). Check populate menu items from database. Select the rs_category, get labels and values from category. Click OK to finish the process. Figure 20: Menu Properties 14

15 Figure 21: Insert a new record page The finished insert record page will as above (Figure 21). The administrator can enter the product name, price and select the category. Click insert record button and the information inside the database will be updated. Create a page to update the records If we want to edit a record, we will expect there is a form to edit it. This time the form should not be empty, it should already display the product name, price and category. And since the form need this information, we need to build a recordset like before. The most important thing is this time we need to adjust the filter from none to productid1 = URL Parameter productid1. This is used to let the form only display the information of a specific product or record. Figure 22 : Adjust the filter 15

16 Figure 23: Bind to dynamic source Select the text field and click on the Bind to dynamic source. Choose the corresponding dynamic source. This step will make the form display the information of a specific when the administrator edits the record. How the forms know which record need to display after the administrator press the update button in the product list? The answer is we need to insert a hidden field (Figure 24). Figure 24: Insert a hidden field 16

17 Select the hidden field and inside the properties panel, change the name of the hidden field to the name of the product ID inside the database. Click on the Bind to Dynamic Source button and select the product ID dynamic source (Figure 25). Figure 25: Properties panel The last step is to go to Insert> Data Object> Update Record> Update Record Figure 26: Update record dialogue box In the value field, select Form.productID1, submit as integer and tick primary key, click OK. 17

18 Figure 27: Insert the link of update record Create a new column, and then highlight Update (Figure 27). Instead of point to the updaterecord.php, browse for it. 18

19 Figure 28: Click on Parameters button Figure 29 : Parameters dialogue box Click on the Parameters button button (Figure 28), change the name to the name of the product ID inside the database, and bind value to the dynamic resources, which is the productid1 of the recordset(figure 29). 19

20 Now, we can insert the record in the product list page (Figure 30). Figure 30: Product list page with update button 20

21 Delete a record Create a page called deleterecord.php, go to server behaviors, click on the + icon, choose Delete Record (Figure 30). Choose the product_list.php to be the page to go to after deleting, select the product ID1 to be the primary key column and primary key value. Figure 31: Choose Delete Record from Server Behaviors Figure 32: Delete record dialogue box 21

22 Figure 33: move the code Select the highlighted portion of code and move outside the brackets. 22

23 At this stage, we already finish the deleterecord.php, go to the product list page to add link for making delete record. High the word delete, in the properties panel, browse to link to deleterecord.php (Figure 34). Click on the Parameter button, rename the name to ProductID1 (Figure 35) and the bind the value to the productid1 of the rsproduct recordset (Figure 36). Figure 34: Select File Figure 35: Parameters dialogue box 23

24 Figure 36: Bind to the productid1 The delete link is now added and each of the record in the product list can be deleted by pressing the word delete. 24

25 Authenticating Users Authenticating users is important, as some of the information, especially involve privacy. Unauthorized access to data can lead to file corruption or the downloading of viruses, both can cause a system or entire network to cash. Insert> Data Object> User Authentication> Log in User Figure 37: Log in User dialogue box If login success, go to index.php. Tick the Go to previous URL is because the user already login, go to the index page which the user want to access before. A Login link is then created in the index page. 25

26 Restrict access to a page To protect a page which only allow administrator to access, open that file, such as product_list.php. Open the product_list.php, go to Insert > Data Objects> User Authentication> Restrict Access to Page (Figure 38Figure 39). Set the restriction based on Username and password and if access denied, go to loginpage.php (Figure 39). Figure 38: steps to restrict access to page Figure 39: Restrict access to page dialogue box 26

27 Figure 40: Result of login fail From the above figure (Figure 40), if the user did not login, the product list page will redirect to login page (see the link is not loginpage.php). 27

28 logout Go to a page that wants to create a logout link. Go to insert, data objects, user authentication, log out user (Figure 41). Figure 41: Steps to log out user Click OK, then a logout link will be created. Figure 42: Log Out User dialogue box 28

29 Figure 43: Log out link is created From the above figure (Figure 43), a logout link is created at the left upper corner. 29

30 6. Result Figure 44: Index page of the online shopping store The index page of the online shopping store is shown above. The middle column showed the newest product that is available in the shop. Also there are some models here to display the most popular product recently. 30

31 Figure 45: Product list page The product list listed all products of the shop, customers can click see the name and the price of the product. If the customer wants to see the detail of the product, they can click on the View Product link to access (Figure 45). 31

32 Figure 46: Detail of each product After clicking the View product link, the above page will be shown (Figure 47). Black color is cool is the description of this product. There is Add to Shopping Cart button which allow the customer to add the product if they think that is suitable, the following page will be seen (Figure 47). Figure 47: Your cart 32

33 This page can also be accessed by clicking the Your cart link on any page at the top right hand corner. This shows the quantity of each product that the customer buy and the total that they need to pay for. There is a x button next to each product such that the customer can delete the product when they sudden change their mind. 7. Direction In the result section, we see that the product list only can display a five product in one page. If there are a lot of products in that year and we want to let the customer view it, this page clearly has problem. Students can study more about how to use the server behavior (Figure 48) to deal with this problem. Figure 48: Server behavior In the solution section, we generated a lot of php by using Dreamweaver. This is very convenience to create in this way. However, this is also very time consuming and some problems may be created such as the position of logout button of each page may not consistent. Students can study more about how to write a template, how to use the include_once php code to cope with the inconsistent of each page. 33

34 About the form, we did not do any validations to validate the information that the administers enter. A form with validation function should be quite similar as below (Figure 49). Figure 49: Form with validation Validation can be done by using spry which is available inside the Dreamweaver, it is capable of doing simple validation such as whether the field is filled, is the information inside the field is with format. Figure 50: Zend framework logo More advance validation can be done by using Zend framework (Figure 50), which is freely available by accessing the following link. Zend framework is an open source and object oriented web application framework for the developers. For validations, Zend framework provides a set of commonly needed validators. For example, a web application might require that a username be between six and twelve characters in length and may only contain alphanumeric characters. A validator can be used for ensuring that usernames meet these requirements. If a chosen username does not meet one or both of the requirements, it would be useful to know which of the requirements the username fails to meet (Zend validate introduction). 34

35 8. Reference Jenkins, S., & Wagner, R. (n.d.). Dreamweaver CS5 All-in-One For Dummies. Wiley Publishers. Jwilliamsoh. (n.d.). Explain the concept of database record and recordset? Retrieved from Answers.com: NoteBlogger. (2013, April 16). What is XAMPP?. Retrieved from!blog: Zend validate introduction. (n.d.). Retrieved from Zend framework: 35

TIMETABLE ADMINISTRATOR S MANUAL

TIMETABLE ADMINISTRATOR S MANUAL 2015 TIMETABLE ADMINISTRATOR S MANUAL Software Version 5.0 BY GEOFFPARTRIDGE.NET TABLE OF CONTENTS TOPIC PAGE 1) INTRODUCTION 1 2) TIMETABLE SPECIFICATIONS 1 3) SOFTWARE REQUIRED 1 a. Intranet Server (XAMPP

More information

Welcome to Collage (Draft v0.1)

Welcome to Collage (Draft v0.1) Welcome to Collage (Draft v0.1) Table of Contents Welcome to Collage (Draft v0.1)... 1 Table of Contents... 1 Overview... 2 What is Collage?... 3 Getting started... 4 Searching for Images in Collage...

More information

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

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

More information

Jackson Systems E-commerce Guide

Jackson Systems E-commerce Guide Accessing E-commerce To access the e-commerce feature, go to jacksonsystems.com and click on Contractor Login in the upper right hand corner. If you do not have a username and password, you can request

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

Personal Portfolios on Blackboard

Personal Portfolios on Blackboard Personal Portfolios on Blackboard This handout has four parts: 1. Creating Personal Portfolios p. 2-11 2. Creating Personal Artifacts p. 12-17 3. Sharing Personal Portfolios p. 18-22 4. Downloading Personal

More information

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

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

More information

This guide shows you the process for adding ecart to your online store so that you can start selling products online.

This guide shows you the process for adding ecart to your online store so that you can start selling products online. ecart will add invaluable checkout functionality to your online store. This includes the ability to create and design a shopping cart page, add products to a cart, and create all the necessary pages for

More information

Publish Joomla! Article

Publish Joomla! Article Enterprise Architect User Guide Series Publish Joomla! Article Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Table of Contents Publish Joomla! Article 3 Install Joomla! Locally 4 Set

More information

SFTP Server User Login Instructions. Open Internet explorer and enter the following url: https://sftp.sae.org

SFTP Server User Login Instructions. Open Internet explorer and enter the following url: https://sftp.sae.org SFTP Server User Login Instructions Open Internet explorer and enter the following url: https://sftp.sae.org You will be prompted for a user id and password as such. Please enter your account id and password.

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

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

Acclipse Document Manager

Acclipse Document Manager Acclipse Document Manager Administration Guide Edition 22.11.2010 Acclipse NZ Ltd Acclipse Pty Ltd PO Box 2869 PO Box 690 Level 3, 10 Oxford Tce Suite 15/40 Montclair Avenue Christchurch, New Zealand Glen

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

account multiple solutions

account multiple solutions Quick Start Guide 1 Our easy to use guide will get you up and running in no time! The guide will assist you with: Generating your Sage Pay login Navigation Creating contacts Creating system users Setting

More information

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD)

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD) USING MYWEBSQL MyWebSQL is a database web administration tool that will be used during LIS 458 & CS 333. This document will provide the basic steps for you to become familiar with the application. 1. To

More information

Content Management System Help. basic tutorial on Evergreen s CMS

Content Management System Help. basic tutorial on Evergreen s CMS Content Management System Help cms.evergreen.edu Tips, tricks and basic tutorial on Evergreen s CMS Contents Vocabulary Login Opening a page Editing a page Creating a new page Inserting internal and external

More information

SourceAnywhere Service Configurator can be launched from Start -> All Programs -> Dynamsoft SourceAnywhere Server.

SourceAnywhere Service Configurator can be launched from Start -> All Programs -> Dynamsoft SourceAnywhere Server. Contents For Administrators... 3 Set up SourceAnywhere... 3 SourceAnywhere Service Configurator... 3 Start Service... 3 IP & Port... 3 SQL Connection... 4 SourceAnywhere Server Manager... 4 Add User...

More information

USER GUIDE WEB HOSTING SERVICE

USER GUIDE WEB HOSTING SERVICE USER GUIDE WEB HOSTING SERVICE v.1.0 Table of Content Table of Content...2 1. Introduction...3 2. Your user name and password...4 3. Creating your web page...5 4. Send and receive email...7 5. Viewing

More information

WatchDox Administrator's Guide. Application Version 3.7.5

WatchDox Administrator's Guide. Application Version 3.7.5 Application Version 3.7.5 Confidentiality This document contains confidential material that is proprietary WatchDox. The information and ideas herein may not be disclosed to any unauthorized individuals

More information

MOODLE Installation on Windows Platform

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

More information

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

Recruitment Management System (RMS) User Manual

Recruitment Management System (RMS) User Manual Recruitment Management System (RMS) User Manual Contents Chapter 1 What is Recruitment Management System (RMS)? 2 Chapter 2 Login/ Logout RMS Chapter 3 Post Jobs Chapter 4 Manage Jobs Chapter 5 Manage

More information

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve.

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve. Quick Start Guide DocuSign Retrieve 3.2.2 Published April 2015 Overview DocuSign Retrieve is a windows-based tool that "retrieves" envelopes, documents, and data from DocuSign for use in external systems.

More information

Setting Up ALERE with Client/Server Data

Setting Up ALERE with Client/Server Data Setting Up ALERE with Client/Server Data TIW Technology, Inc. November 2014 ALERE is a registered trademark of TIW Technology, Inc. The following are registered trademarks or trademarks: FoxPro, SQL Server,

More information

ECAT SWE Exchange Customer Administration Tool Web Interface User Guide Version 6.7

ECAT SWE Exchange Customer Administration Tool Web Interface User Guide Version 6.7 ECAT SWE Exchange Customer Administration Tool SWE - Exchange Customer Administration Tool (ECAT) Table of Contents About this Guide... 3 Audience and Purpose... 3 What is in this Guide?... 3 CA.mail Website...

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

Building A Very Simple Web Site

Building A Very Simple Web Site Sitecore CMS 6.2 Building A Very Simple Web Site Rev 100601 Sitecore CMS 6. 2 Building A Very Simple Web Site A Self-Study Guide for Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 Building

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

How to Copy A SQL Database SQL Server Express (Making a History Company)

How to Copy A SQL Database SQL Server Express (Making a History Company) How to Copy A SQL Database SQL Server Express (Making a History Company) These instructions are written for use with SQL Server Express. Check with your Network Administrator if you are not sure if you

More information

ONE POS User Manual. A brief hand guide for ONE ERP POS SYSTEM MYIT SOLUTION. Latest update on: 03/09/12

ONE POS User Manual. A brief hand guide for ONE ERP POS SYSTEM MYIT SOLUTION. Latest update on: 03/09/12 ONE POS User Manual A brief hand guide for ONE ERP POS SYSTEM MYIT SOLUTION Latest update on: 03/09/12 TABLE OF CONTENTS CHAPTER 1 - SETTINGS Database Setup... 3 Printer Configuration... 5 Cash Drawer

More information

Copyright EPiServer AB

Copyright EPiServer AB Table of Contents 3 Table of Contents ABOUT THIS DOCUMENTATION 4 HOW TO ACCESS EPISERVER HELP SYSTEM 4 EXPECTED KNOWLEDGE 4 ONLINE COMMUNITY ON EPISERVER WORLD 4 COPYRIGHT NOTICE 4 EPISERVER ONLINECENTER

More information

How to Add Users 1. 2.

How to Add Users 1. 2. Administrator Guide Contents How to Add Users... 2 How to Delete a User... 9 How to Create Sub-groups... 12 How to Edit the Email Sent Out to New Users... 14 How to Edit and Add a Logo to Your Group's

More information

NCAA Single-Source Sign-On System User Guide

NCAA Single-Source Sign-On System User Guide NCAA Single-Source Sign-On System Table of Contents General Description... 1 Glossary of Terms... 1 Common Features Log In... 2 Password... 3 Log Out... 4 Tabs... 4 Buttons and Links... 4 Management and

More information

Installing buzztouch Self Hosted

Installing buzztouch Self Hosted Installing buzztouch Self Hosted This step-by-step document assumes you have downloaded the buzztouch self hosted software and operate your own website powered by Linux, Apache, MySQL and PHP (LAMP Stack).

More information

UH CMS Basics. Cascade CMS Basics Class. UH CMS Basics Updated: June,2011! Page 1

UH CMS Basics. Cascade CMS Basics Class. UH CMS Basics Updated: June,2011! Page 1 UH CMS Basics Cascade CMS Basics Class UH CMS Basics Updated: June,2011! Page 1 Introduction I. What is a CMS?! A CMS or Content Management System is a web based piece of software used to create web content,

More information

How to create pop-up menus

How to create pop-up menus How to create pop-up menus Pop-up menus are menus that are displayed in a browser when a site visitor moves the pointer over or clicks a trigger image. Items in a pop-up menu can have URL links attached

More information

EDGETECH FTP SITE CUSTOMER & VENDOR ACCESS

EDGETECH FTP SITE CUSTOMER & VENDOR ACCESS EDGETECH FTP SITE CUSTOMER & VENDOR ACCESS 1. The EdgeTech FTP site is a web hosted site, not a true FTP site, remember to use http:// not ftp:// in the web address. IMPORTANT: Do Not use FileZilla or

More information

Creating Dynamic Database-Driven Sites with Dreamweaver

Creating Dynamic Database-Driven Sites with Dreamweaver Agenda Creating Dynamic Database-Driven Sites with Dreamweaver Faisal Karim Shaikh faisal.shaikh@faculty.muet.edu.pk Seeing/doing it: Building a small dynamic people web site List current people, add new

More information

Global TAC Secure FTP Site Customer User Guide

Global TAC Secure FTP Site Customer User Guide Global TAC Secure FTP Site Customer User Guide Introduction This guide is provided to assist you in using the GTAC Secure FTP site. This site resides in the Houston Remote Services Center (RSC), and is

More information

Open a PDF document using Adobe Reader, then click on the Tools menu on the upper left hand corner.

Open a PDF document using Adobe Reader, then click on the Tools menu on the upper left hand corner. This document illustrates how to digitally sign PDF documents using Acrobat Reader 11. The illustrations assume that the user already has a digital certificate. You will need the latest version of Adobe

More information

the barricademx end user interface documentation for barricademx users

the barricademx end user interface documentation for barricademx users the barricademx end user interface documentation for barricademx users BarricadeMX Plus The End User Interface This short document will show you how to use the end user web interface for the BarricadeMX

More information

Frequently Asked Questions (FAQ)

Frequently Asked Questions (FAQ) Frequently Asked Questions (FAQ) (click header to jump to the section of your choice) HOW DO I REGISTER FOR AN ACCOUNT? HOW DO I CHANGE MY PASSWORD? WHY SHOULD I REGISTER FOR AN ACCOUNT? HOW CAN I SET

More information

Transitioning from TurningPoint 5 to TurningPoint Cloud - LMS 1

Transitioning from TurningPoint 5 to TurningPoint Cloud - LMS 1 Transitioning from TurningPoint 5 to TurningPoint Cloud - LMS 1 A Turning Account is a unique identifier that is used to tie together all software accounts and response devices. A Turning Account is required

More information

Managing Your ecommerce Store

Managing Your ecommerce Store West Virginia University Information Technology Services ecommerce Store Manager QuickStart Guide Managing Your ecommerce Store Last Updated: August 22, 2014 Table Of Contents If you are using a Mac, click

More information

PHP+MYSQL, EASYPHP INSTALLATION GUIDE

PHP+MYSQL, EASYPHP INSTALLATION GUIDE PHP+MYSQL, EASYPHP INSTALLATION GUIDE EasyPhp is a tool to install and configure an Apache server along with a database manager, MySQL. Download the latest version from http://www.easyphp.org/ as seen

More information

Using Adobe Dreamweaver CS4 (10.0)

Using Adobe Dreamweaver CS4 (10.0) Getting Started Before you begin create a folder on your desktop called DreamweaverTraining This is where you will save your pages. Inside of the DreamweaverTraining folder, create another folder called

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

Managed Security Web Portal USER GUIDE

Managed Security Web Portal USER GUIDE Managed Security Web Portal USER GUIDE CONTENTS 1.0 Introduction 4 2.0 Login 4 3.0 Portal Layout 4 3.1 Home Tab 5 3.2 Web Filtering Tab 5 3.3 SSL VPN Users Tab 6 4.0 Web Filtering Administration 7 4.1

More information

Connecting to LUA s webmail

Connecting to LUA s webmail Connecting to LUA s webmail Effective immediately, the Company has enhanced employee remote access to email (Outlook). By utilizing almost any browser you will have access to your Company e-mail as well

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

ITP 101 Project 3 - Dreamweaver

ITP 101 Project 3 - Dreamweaver ITP 101 Project 3 - Dreamweaver Project Objectives You will also learn how to make a website outlining your company s products, location, and contact info. Project Details USC provides its students with

More information

Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide

Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide Coveo Platform 7.0 Microsoft Dynamics CRM Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

Project management integrated into Outlook

Project management integrated into Outlook y Project management integrated into Outlook InLoox PM 7.x Help for the configuration for MySQL-Server An InLoox Whitepaper Published: October 2011 Copyright: InLoox GmbH 2011 You find up-to-date information

More information

Learn About Analysis, Interactive Reports, and Dashboards

Learn About Analysis, Interactive Reports, and Dashboards Learn About Analysis, Interactive Reports, and Dashboards This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision February 3, 2014, copyright

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

Upgrading MySQL from 32-bit to 64-bit

Upgrading MySQL from 32-bit to 64-bit Upgrading MySQL from 32-bit to 64-bit UPGRADING MYSQL FROM 32-BIT TO 64-BIT... 1 Overview... 1 Upgrading MySQL from 32-bit to 64-bit... 1 Document Revision History... 21 Overview This document will walk

More information

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

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

More information

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

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

Overcoming The Fear Factor : Creating a Dynamic Web Site

Overcoming The Fear Factor : Creating a Dynamic Web Site Overcoming The Fear Factor : Creating a Dynamic Web Site DIANA FARMER 1 and YONGLI ZHOU 2 1 Hale Library, Kansas State University, Manhattan, Kansas, USA 2 Morgan Library, Colorado State University, Fort

More information

WebSphere Business Monitor V6.2 KPI history and prediction lab

WebSphere Business Monitor V6.2 KPI history and prediction lab Copyright IBM Corporation 2009 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 6.2 LAB EXERCISE WebSphere Business Monitor V6.2 KPI history and prediction lab What this exercise is about... 1 Lab requirements...

More information

Dashboard Admin Guide

Dashboard Admin Guide MadCap Software Dashboard Admin Guide Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

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

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

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

More information

OUTLOOK ANYWHERE CONNECTION GUIDE FOR USERS OF OUTLOOK 2010

OUTLOOK ANYWHERE CONNECTION GUIDE FOR USERS OF OUTLOOK 2010 OUTLOOK ANYWHERE CONNECTION GUIDE FOR USERS OF OUTLOOK 2010 CONTENTS What is Outlook Anywhere? Before you begin How do I configure Outlook Anywhere with Outlook 2010? How do I use Outlook Anywhere? I already

More information

Google Sites. How to create a site using Google Sites

Google Sites. How to create a site using Google Sites Contents How to create a site using Google Sites... 2 Creating a Google Site... 2 Choose a Template... 2 Name Your Site... 3 Choose A Theme... 3 Add Site Categories and Descriptions... 3 Launch Your Google

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

Support System User Guide

Support System User Guide Support System User Guide The Virtual Office support system provides users with a useful way to submit and track issues and resolutions. This feature- rich system is one more way that VO provides customers

More information

CMS Training. Prepared for the Nature Conservancy. March 2012

CMS Training. Prepared for the Nature Conservancy. March 2012 CMS Training Prepared for the Nature Conservancy March 2012 Session Objectives... 3 Structure and General Functionality... 4 Section Objectives... 4 Six Advantages of using CMS... 4 Basic navigation...

More information

emobile Bulk Text User Guide Copyright Notice Copyright Phonovation Ltd

emobile Bulk Text User Guide Copyright Notice Copyright Phonovation Ltd emobile Bulk Text User Guide Copyright Notice Copyright Phonovation Ltd Important Notice: The Information contained in this document is subject to change without notice and should not be construed as a

More information

https://weboffice.edu.pe.ca/

https://weboffice.edu.pe.ca/ NETSTORAGE MANUAL INTRODUCTION Virtual Office will provide you with access to NetStorage, a simple and convenient way to access your network drives through a Web browser. You can access the files on your

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

Microsoft Expression Web

Microsoft Expression Web Microsoft Expression Web Microsoft Expression Web is the new program from Microsoft to replace Frontpage as a website editing program. While the layout has changed, it still functions much the same as

More information

Fairfield University Using Xythos for File Sharing

Fairfield University Using Xythos for File Sharing Fairfield University Using Xythos for File Sharing Version 7.0 Table of Contents I: Manage your Department Folder...2 Your Department Folder... 2 II: Sharing Folders and Files Inside of Fairfield U...3

More information

Transitioning from TurningPoint 5 to TurningPoint Cloud - NO LMS 1

Transitioning from TurningPoint 5 to TurningPoint Cloud - NO LMS 1 Transitioning from TurningPoint 5 to TurningPoint Cloud - NO LMS 1 A Turning Account is a unique identifier that is used to tie together all software accounts and response devices. A Turning Account is

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

Salesforce Customer Portal Implementation Guide

Salesforce Customer Portal Implementation Guide Salesforce Customer Portal Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Setting Up Scan to SMB on TaskALFA series MFP s.

Setting Up Scan to SMB on TaskALFA series MFP s. Setting Up Scan to SMB on TaskALFA series MFP s. There are three steps necessary to set up a new Scan to SMB function button on the TaskALFA series color MFP. 1. A folder must be created on the PC and

More information

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business 2015 Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business This manual will take you through all the areas that you are likely to use in order to maintain, update

More information

Installation instructions for MERLIN Dashboard

Installation instructions for MERLIN Dashboard Installation instructions for MERLIN Dashboard Contents Installation Prerequisites:... 2 Procedure to manually backup and restore Views and Settings in AxOEE Manager... 3 For XP users go to:... 3 For Vista

More information

All the materials and/or graphics included in the IceThemetheme folders MUST be used ONLY with It TheCityTheme from IceTheme.com.

All the materials and/or graphics included in the IceThemetheme folders MUST be used ONLY with It TheCityTheme from IceTheme.com. Terms of Use: All the materials and/or graphics included in the IceThemetheme folders MUST be used ONLY with It TheCityTheme from IceTheme.com. Table of Contents 1- Introduction 3 2- Installing the theme

More information

User s Guide For Department of Facility Services

User s Guide For Department of Facility Services Doc s File Server User s Guide For Department of Facility Services For Ver : 7.2.88.1020 Rev : 1_05-27-2011 Created by : Elliott Jeyaseelan 2 Table of Contents SERVER LOGIN & AUTHENTICATION REQUIREMENTS

More information

Insert Survey Data into a Database: Dreamweaver & Access 2007

Insert Survey Data into a Database: Dreamweaver & Access 2007 Insert Survey Data into a Database: Dreamweaver & Access 2007 Site Preparation 1. Open your User folder and create a folder titled InsertData_Local. Do NOT place this folder inside PUB. If you are working

More information

An Email Newsletter Using ASP Smart Mailer and Advanced HTML Editor

An Email Newsletter Using ASP Smart Mailer and Advanced HTML Editor An Email Newsletter Using ASP Smart Mailer and Advanced HTML Editor This tutorial is going to take you through creating a mailing list application to send out a newsletter for your site. We'll be using

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Integration of Oracle BI Publisher with Oracle Business Intelligence Enterprise Edition Purpose This tutorial mainly covers how Oracle BI Publisher is integrated with

More information

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts...

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts... Table of Contents Welcome... 2 Login... 3 Password Assistance... 4 Self Registration... 5 Secure Mail... 7 Compose... 8 Drafts... 10 Outbox... 11 Sent Items... 12 View Package Details... 12 File Manager...

More information

How to build Dashboard - Step by Step tutorial/recipe

How to build Dashboard - Step by Step tutorial/recipe How to build Dashboard - Step by Step tutorial/recipe Contents How to build Dashboard - Step by Step tutorial/recipe...1 How to create Excel Dashboard [ as direct connection ]...2 Purpose of this Dashboard

More information

Thank you for deciding to read this book. I have written this book for you to learn Joomla! 1.5 as fast as possible.

Thank you for deciding to read this book. I have written this book for you to learn Joomla! 1.5 as fast as possible. Preface Thank you for deciding to read this book. I have written this book for you to learn Joomla! 1.5 as fast as possible. This book is meant to be read cover-to-cover, and all you have to do is read

More information

How to use Office 365 with your OneDrive File Storage Facility

How to use Office 365 with your OneDrive File Storage Facility How to use Office 365 with your OneDrive File Storage Facility As a student at Pembrokeshire College you will have access to Microsoft s Office 365 and the OneDrive file storage facility. Microsoft Office

More information

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

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

More information

Login/ Logout RMS Employer Login Go to Employer and enter your username and password in the Employer Login section. Click on the LOGIN NOW button.

Login/ Logout RMS Employer Login Go to Employer and enter your username and password in the Employer Login section. Click on the LOGIN NOW button. Recruitment Management System Version 8 User Guide What is Recruitment Management System (RMS)? Recruitment Management System (RMS) is an online recruitment system which can be accessed by corporate recruiters

More information

Adobe Dreamweaver CC 14 Tutorial

Adobe Dreamweaver CC 14 Tutorial Adobe Dreamweaver CC 14 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site

More information

etoken Enterprise For: SSL SSL with etoken

etoken Enterprise For: SSL SSL with etoken etoken Enterprise For: SSL SSL with etoken System Requirements Windows 2000 Internet Explorer 5.0 and above Netscape 4.6 and above etoken R2 or Pro key Install etoken RTE Certificates from: (click on the

More information

MySQL Manager. User Guide. July 2012

MySQL Manager. User Guide. July 2012 July 2012 MySQL Manager User Guide Welcome to AT&T Website Solutions SM We are focused on providing you the very best web hosting service including all the tools necessary to establish and maintain a successful

More information

This guide provides step by step instructions for using the IMF elibrary Data - My Data area. In this guide, you ll learn how to:

This guide provides step by step instructions for using the IMF elibrary Data - My Data area. In this guide, you ll learn how to: This guide provides step by step instructions for using the IMF elibrary Data - area. In this guide, you ll learn how to: Access your favorite and recently used data reports. Make sure you receive email

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

Fax User Guide 07/31/2014 USER GUIDE

Fax User Guide 07/31/2014 USER GUIDE Fax User Guide 07/31/2014 USER GUIDE Contents: Access Fusion Fax Service 3 Search Tab 3 View Tab 5 To E-mail From View Page 5 Send Tab 7 Recipient Info Section 7 Attachments Section 7 Preview Fax Section

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

Orientation Course - Lab Manual

Orientation Course - Lab Manual Orientation Course - Lab Manual Using the Virtual Managed Workplace site for the lab exercises Your instructor will provide the following information before the first lab exercise begins: Your numerical

More information