Changing the Tufts University Moon Site. Needed:
|
|
|
- Thomas Lucas Mason
- 10 years ago
- Views:
Transcription
1 Changing the Tufts University Moon Site Needed: ASPUpload (Download a free trial version from Microsoft Access The VI for running VIs (Rover-server, talk to Phil Lau at [email protected]) The Moon Site (on CD-ROM) Notepad Microsoft Internet Information Services/Internet Services Manager 1. First, install the Microsoft Internet Information Services/ Internet Services Manager. On Windows 2000 (and NT?) this is found by going Start Menu>Settings>Control Panel>Add/Remove Programs>Add/Remove Windows Components and selecting the checkbox that says Internet Information Services. 2. After installing IIS, go to Start Menu>Programs>Internet Services Manager. A window will come up with two columns. In the column on the right, select your computer. It will open, presenting three options (Default FTP site, Default Web Site, and Default SMP Virtual Server). Select Default Web Site, and hit the play button found in the toolbar at the top. Now your computer is running a web server. 3. Move all of the files from the Moon Site folder on the CD-ROM to C:\Inetpub\wwwroot\ This is the directory for the default website. Windows 2000 puts a lot of extra stuff in here, so check to make sure it is empty before you move the files from the CD-ROM. You can put all of the files in a folder in wwwroot if you want to, but it s not required. 4. Right click on all of the Moon Site files. Go to Properties. Deselect Read-Only for all files. 5. Open default.asp using Notepad. The first two lines are server-side includes. They need to be changed from <!--#include virtual= Moon/includes/includes.asp --> and (!--#include virtual= Moon/pages/default.htm -->. If you put the files from the Moon Site into a folder in wwwroot, then the correct form would be <!-- #include virtual= FolderName/includes/includes.asp -->. If you did not put the files from the Moon Site into a folder in wwwroot, then the form is <!--#include virtual=../includes/includes.asp -->. All.asp files from the Moon site start out this way, therefore the first two lines of every.asp file need to be changed. There is a file called../includes/includes.asp. Every line of this file needs to be changed in the same way. 6. Most of the image links will need to be changed from images/imagename.jpg to../images/imagename.jpg. Most image links are found in../pages.
2 7. Get ASPUpload if you haven t already. Install this. 8. In wwwroot, create a folder called DB. Open a new MS Access database and save it to C:\Inetpub\wwwroot\DB\. Within this database, create four tables, named moon_users, moon_missions, moon_schedule, and moon_input. 9. Create the following fields. In design view, give these fields the following properties: moon_mission id (required, auto-number, primary-key) schedule_id (required, number, index to id in moon_schedule) user_id (required, number, index to id in moon_user) mission_name (required, no zero length, field size 50) mission_comments (text) program_link (text, length 50) program_gif (text, length 50) data_link (text, lenght 50) video_link (text, length 50) date_submitted (no zero length, required, date/time) date_run (allow zero lenght, not required, date/time) priority (default value= 1, number) moon_schedule id (required, no zero lenght, primary-key, auto-number) user_id (required, no zero length, index with id in moon_user) start_time (required, no zero length, date/time) end_time (required, no zero lenght, date/time) moon_user id ( primary-key auto-number) idkey (required, no zero length, max lenght 25) admin (required, no zero length, number, default=0) first_name (lenght 50, no zero length) last_name (length 50) school_name (length 100, allow zero length ) team_name (lenght 100, allow zero length) address_line1 (length 100, allow zero length) address_line2 (length 100, allow zero length) city (length 100, allow zero length ) state ( length 100, allow zero length ) country (length 100, allow zero length) zip (length 100, allow zero length) telephone (length 25, allow zero length) fax (length 25, allow zero length) (length 50) grade_taught (length 10) grade_in (lenght 20) under_13 (length 10) parent_ (length 50, allow zero length) parent_contacted (required, no zero length, number, default value=0)
3 login (required, length 50, text) password (required, length 50, text) date_entered (required, no zero length, date/time) last_login (date time) num_logins (no zero length, number, default is 0) memo (text, allow zero length) moon_input input_id (required, number) file_name (text, length 50, required, no zero length) input_name (text, length 50, requried, no zero length) 10. In../includes/functions.asp, change line 283 from objconn.open "DSN=tutorial;" to objconn.open "Driver={Microsoft Access Driver (*.mdb)}; DBQ=C:\Inetpub\wwwroot\DB\MDDS.mdb" (all on one line, where the file name is the path of your database). 11. In../includes/variables.asp change the upload_path and preferences_file file paths to the correct file paths for your site. Change the missions_link as well. 12. In submit.asp, delete the Tufts University code at the top of the page (from where to download... to but not including <% TOP submit %>. Insert the following code instead: <% ' where to download to... dim download_dir download_dir = upload_path & user.item("idkey") & "\" ' prepare to do file upload Set Upload = Server.CreateObject("Persits.Upload.1") Upload.IgnoreNoPost = TRUE Upload.OverwriteFiles = False ' save form data Count = Upload.SaveToMemory dim action action = Upload.Form("action") if action = "upload" then ' check other parameters of form to make sure A-OK dim mission_name, time_slot, dircrte mission_name = Upload.Form("mission_name") time_slot = Upload.Form("time_slot") dircrte = Upload.Form("yes_no") if mission_name = "" then error_mesg = error_mesg & "<li>no mission name entered.</li>" & vbnewline if time_slot = "" then error_mesg = error_mesg & "<li>no time slot selected.</li>" & vbnewline If dircrte = "2" then error_mesg = error_mesg & "<li>please answer: Have you ever submitted a mission here before?</li>" & vbnewline if dircrte = "0" then Upload.CreateDirectory download_dir if error_mesg="" then Set File = Upload.Files(1) dim file_name file_name = File.ExtractFileName ' test file for being a robolab file (ie. first 4 chars are "RSRC")
4 '" & file_name & "';" ' first download to temp directory File.SaveAs transfer_temp & file_name 'saved here for virus scan File.SaveAs download_dir & file_name ' now input data into DB dim date_submitted date_submitted = now start_db open_rs_add "SELECT * FROM moon_mission WHERE id = -1" objrs("schedule_id") = time_slot objrs("user_id") = user.item("id") objrs("mission_name") = mission_name objrs("mission_comments") = Upload.Form("mission_comments") objrs("program_link") = file_name objrs("date_submitted") = date_submitted objrs("priority") = 1 ' for now, all have priority of 1 update_rs ' get the ID of the one we just added open_rs_read "SELECT MAX(id) FROM moon_mission WHERE user_id = " & user.item("id") & " AND program_link = dim mission_id mission_id = 1 ' bogus default mission_id = objrs.fields(0) ' get start time/end time of the mission from schedule open_rs_read "SELECT start_time, end_time FROM moon_schedule WHERE id = " & time_slot & ";" dim start_time, end_time, time_diff start_time = objrs("start_time") end_time = objrs("end_time") ' figure out length of time block time_diff = CInt(DateDiff("n", start_time, end_time)) if time_diff < 10 then 'time_diff = "00" & CStr(time_diff) elseif time_diff < 100 then time_diff = "0" & CStr(time_diff) elseif time_diff >= 1000 then time_diff = "999" end_db ' now copy the file also to the upload_path with ' different name so it gets run... ' name is: run##########_###_##.vi ' - the first ########## is for # of seconds since Jan 1, 1970 (padded to 10) ' - the middle ### is the length of the mission in minutes ' - the last ## is for the mission # we just entered file_name = "run" & date_to_filename(cdate(start_time)) & "_" & time_diff & "_" & mission_id & ".vi" File.Copy transfer_out & file_name dim input_name input_name = "run" & date_to_filename(cdate(start_time)) & "_" & time_diff & "_" & mission_id start_db open_rs_add "SELECT * FROM moon_input WHERE mission_id = "&mission_id&"" objrs("file_name") = file_name objrs("input_id") = user.item("id") objrs("input_name") = input_name update_rs end_db xredirect "viewmission.asp?idkey=" & user.item("idkey") if error_mesg <> "" then error_mesg = "<p><b>error with input:</b><ul>" & error_mesg & "</ul></p>" ' matches "if action = 'upload' then... " %>
5 This doesn t work as well as the Tufts code. For example, the files are not checked to make sure that they are ROBOLAB files. However, I could not get their code to work. This code works. I just run a virus scanner every 10 minutes on missions/temp because all files are saved here (for a virus scan). 13. In includes/functions2.asp, include the following code in the SUBMIT_FORM, right after the line containing Mission Name. This will create a box asking users if they have ever submitted a mission before. If yes, then when they submit a mission, the computer will look for their existing folder. If no, the computer will create a folder for them. <tr><td>have you submitted a mission before?</td><td><select name=yes_no><option value="2">---</option><option value="1">yes</option><option value="0">no</option></select></td></tr> This should be all one line, but MS Word is wrapping the text again. 14. Also in includes/functions2.asp, find the Mission Results form. Delete the entire mission results form and insert this code in its place. <% sub RESULTS_DATA %> <table border=1> <tr><th><a href="results.asp?idkey=<%=user.item("idkey")%>&order_by=mission_name">mission Name</a></th> <th><a href="results.asp?idkey=<%=user.item("idkey")%>&order_by=date_submitted">date Submitted</a></th> <th><a href="results.asp?idkey=<%=user.item("idkey")%>&order_by=date_run">date Run</a></th> <th>program</th><th>mission Data</th> <th>delete?</th></tr> <% start_db open_rs_read "SELECT * FROM moon_mission, moon_input WHERE input_id = " & user.item("id") & " AND user_id="&user.item("id")&" ORDER BY " & order_by & ";" while NOT objrs.eof dim name, comments,input_name dim date_submitted, date_run name = objrs("mission_name") date_submitted = objrs("date_submitted") date_run = objrs("date_run") input_name=objrs("input_name") dim program_link, program_gif, data_link, data_gif program_link= input_name & ".vi" program_gif= input_name & ".jpg" data_link = input_name & ".xls" data_gif= input_name &".jpg" if date_submitted <> "" then date_submitted = "<nobr>" & FormatDateTime(CDate(objRS("date_submitted")), 2) & "</nobr> <nobr>" & FormatDateTime(CDate(objRS("date_submitted")), 3) & "</nobr>" if date_run <> "" then date_run = "<nobr>" & FormatDateTime(CDate(objRS("date_run")), 2) & "</nobr> <nobr>" & FormatDateTime(CDate(objRS("date_run")), 3) & "</nobr>" %> <tr> <td><nobr><%=name%></nobr></td> <td align=center><%=date_submitted%></td> <td align=center><%=date_run%></td> <td align=center> <% if program_link <> "" then %> <%=program_link%><br> <% %> <% if program_gif <> "" then %> [<a href="<%=mission_link%>/data/<%=program_gif%>">view</a>]<br>
6 %> </table> wend end_db </tr> <% objrs.movenext <% %> <% if program_link <> "" then %> [<a href="<%=mission_link%>/<%=user.item("idkey")%>/<%=program_link%>">download</a>] <% %> </td> <td align=center> <% if data_link <> "" then %> <%=data_link%><br> <% %> <% if data_gif <> "" then %> [<a href="<%=mission_link%>/data/<%=data_gif%>">view</a>]<br> <% %> <% if data_link <> "" then %> [<a href="<%=mission_link%>/data/<%=data_link%>">download</a>] <% %> </td> <td align=center> <form action="results.asp?idkey=<%=user.item("idkey")%>" method=post onsubmit="return confirm('are you sure you want to delete?');" > <input type=hidden name=action value="delete"> <input type=hidden name=mission_id value="<%=objrs("id")%>"> <input type=submit value="delete" id=submit5 name=submit5></form></td> <% end sub %> 15. I have not been able to get the following pages to work: searchusers.asp and viewmission.asp. To avoid viewmission.asp, change submit.asp from (this line of code is towards the end of what you added earlier) xredirect = viewmission.asp?idkey &user.item( idkey ) to xredirect = results.asp?idkey &user.item( idkey ). The same information is on the results page as on the viewmission.asp page. Another thing you could do would be to create a page called thanks.asp, saying something like thanks for submitting your mission and then point to this page with xredirect = thanks.asp?idkey &user.item( idkey ). Delete the link to viewmission.asp from the user menu. Instead, try a link to results.asp?idkey=<%=user.item( idkey )%> For searchusers.asp, it is possible to use MS Access to search the database but this only works if you can access the actual computer with the DB. Depending on security concerns and privacy concerns, you might not want users off the server computer to be able to access your DB. 16. Change the preferences in the page../pages/variables.asp. These are the links that point to your camera, your privacy statement, and other things. That should be it. If there are any questions, please me at [email protected].
7
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 [email protected] www.vpasp.com Table of Contents 1 INTRODUCTION... 3 2 FEATURES... 4 3 WHAT
Using Internet or Windows Explorer to Upload Your Site
Using Internet or Windows Explorer to Upload Your Site This article briefly describes what an FTP client is and how to use Internet Explorer or Windows Explorer to upload your Web site to your hosting
VP-ASP Shopping Cart QUICK START GUIDE Version 7.00. 18 th Feb 2010 Rocksalt International Pty Ltd www.vpasp.com
VP-ASP Shopping Cart QUICK START GUIDE Version 7.00 18 th Feb 2010 Rocksalt International Pty Ltd www.vpasp.com 2 P a g e Table of Contents INTRODUCTION... 4 1 FEATURES... 5 2 WHAT DO I NEED TO RUN VP-ASP?...
LAB 1: Getting started with WebMatrix. Introduction. Creating a new database. M1G505190: Introduction to Database Development
LAB 1: Getting started with WebMatrix Introduction In this module you will learn the principles of database development, with the help of Microsoft WebMatrix. WebMatrix is a software application which
Capture Pro Software FTP Server System Output
Capture Pro Software FTP Server System Output Overview The Capture Pro Software FTP server will transfer batches and index data (that have been scanned and output to the local PC) to an FTP location accessible
Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms
Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled
Caldes CM12: Content Management Software Introduction v1.9
Caldes CM12: Content Management Software Introduction v1.9 Enterprise Version: If you are using Express, please contact us. Background Information This manual assumes that you have some basic knowledge
Table of Contents SQL Server Option
Table of Contents SQL Server Option STEP 1 Install BPMS 1 STEP 2a New Customers with SQL Server Database 2 STEP 2b Restore SQL DB Upsized by BPMS Support 6 STEP 2c - Run the "Check Dates" Utility 7 STEP
Introduction. Before you begin. Installing efax from our CD-ROM. Installing efax after downloading from the internet
Introduction Before you begin Before you begin installing efax, please check the following: You have received confirmation that your application for the efax service has been processed. The confirmation
Migrating helpdesk to a new server
Migrating helpdesk to a new server Table of Contents 1. Helpdesk Migration... 2 Configure Virtual Web on IIS 6 Windows 2003 Server:... 2 Role Services required on IIS 7 Windows 2008 / 2012 Server:... 2
WS_FTP Pro for Windows 95/98/NT
Note to Instructor: These instructions were written for the faculty and staff to use to familiarize themselves with WS_FTP Pro. The majority of the audience consists of nonspecialists and executives. Also,
IBI Group FTP: Usage Instructions
IBI Group FTP: Usage Instructions Version: Windows; Last Updated: April 22 nd 2009 There are two IBI Group supported methods for connecting to the FTP site, My Computer and FileZilla Client Software. If
OSF INTEGRATOR for. Integration Guide
OSF INTEGRATOR for DEMANDWARE and MICROSOFT DYNAMICS CRM 2013 Integration Guide Table of Contents 1 Summary... 3 2 Component Overview... 3 2.1 Functional Overview... 3 2.2 Integration components... 3 2.3
AXIS 70U - Using Scan-to-File
AXIS 70U - Using Scan-to-File Introduction This document describes the Scan-to-File feature in the AXIS 70U. The step-by-step instructions describe the process of configuring the AXIS 70U and an FTP server.
2. Unzip the file using a program that supports long filenames, such as WinZip. Do not use DOS.
Using the TestTrack ODBC Driver The read-only driver can be used to query project data using ODBC-compatible products such as Crystal Reports or Microsoft Access. You cannot enter data using the ODBC driver;
User Manual Web DataLink for Sage Line 50. Version 1.0.1
User Manual Web DataLink for Sage Line 50 Version 1.0.1 Table of Contents About this manual...3 Customer support...3 Purpose of the software...3 Installation...6 Settings and Configuration...7 Sage Details...7
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
User Guide Trust Safety Accounting Upload PC Law and SFTP Software Release: Final Date
User Guide Trust Safety Accounting Upload PC Law and SFTP Software Release: Final Date: July 22, 2015 TABLE OF CONTENTS Page TRUST SAFETY ACCOUNTING UPLOAD USER GUIDE... 2 BACKGROUND... 2 HOW TO USE THE
IIS, FTP Server and Windows
IIS, FTP Server and Windows The Objective: To setup, configure and test FTP server. Requirement: Any version of the Windows 2000 Server. FTP Windows s component. Internet Information Services, IIS. Steps:
Setting Up the Mercent Marketplace Price Optimizer Extension
For Magento ecommerce Software Table of Contents Overview... 3 Installing the Mercent Marketplace Price Optimizer extension... 4 Linking Your Amazon Seller account with the Mercent Developer account...
HELP DESK MANUAL INSTALLATION GUIDE
Help Desk 6.5 Manual Installation Guide HELP DESK MANUAL INSTALLATION GUIDE Version 6.5 MS SQL (SQL Server), My SQL, and MS Access Help Desk 6.5 Page 1 Valid as of: 1/15/2008 Help Desk 6.5 Manual Installation
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
Working With Your FTP Site
Working With Your FTP Site Welcome to your FTP Site! The UnlimitedFTP (UFTP) software will allow you to run from any web page using Netscape, Internet Explorer, Opera, Mozilla or Safari browsers. It can
Capture Pro Software FTP Server Output Format
Capture Pro Software FTP Server Output Format Overview The Capture Pro Software FTP server will transfer batches and index data (that have been scanned and output to the local PC) to an FTP location accessible
DCH File Transfer Application User Manual
DCH File Transfer Application User Manual Table of Contents HIPAA Compliancy Statement 3 Overview 4 General.4 Getting Started 4 Screen Basics...4 Accessing the File Transfer application...5 Single Sign
MS Access: Advanced Tables and Queries. Lesson Notes Author: Pamela Schmidt
Lesson Notes Author: Pamela Schmidt Tables Text Fields (Default) Text or combinations of text and numbers, as well as numbers that don't require calculations, such as phone numbers. or the length set by
on-hand viewer on iphone / ipod touch manual installation and configuration of an FTP server for Mac OS X to transfer data to on-hand viewer application on iphone / ipod touch table of contents 1. Introduction
Qsync Install Qsync utility Login the NAS The address is 192.168.1.210:8080 bfsteelinc.info:8080
Qsync Qsync is a cloud based file synchronization service empowered by QNAP Turbo NAS. Simply add files to your local Qsync folder, and they will be available on your Turbo NAS and all its connected devices.
How to Make a Working Contact Form for your Website in Dreamweaver CS3
How to Make a Working Contact Form for your Website in Dreamweaver CS3 Killer Contact Forms Dreamweaver Spot With this E-Book you will be armed with everything you need to get a Contact Form up and running
State of Michigan Data Exchange Gateway. Web-Interface Users Guide 12-07-2009
State of Michigan Data Exchange Gateway Web-Interface Users Guide 12-07-2009 Page 1 of 21 Revision History: Revision # Date Author Change: 1 8-14-2009 Mattingly Original Release 1.1 8-31-2009 MM Pgs 4,
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
Guide to Integrate ADSelfService Plus with Outlook Web App
Guide to Integrate ADSelfService Plus with Outlook Web App Contents Document Summary... 3 ADSelfService Plus Overview... 3 ADSelfService Plus Integration with Outlook Web App... 3 Steps Involved... 4 For
FRONTPAGE FORMS... ... ...
tro FRONTPAGE FORMS........................................ CREATE A FORM.................................................................................. 1. Open your web and create a new page. 2. Click
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
PageScope Router. Version 1.5. Configuration Guide
PageScope Router Version 1.5 Configuration Guide Table of Contents TABLE OF CONTENTS... 2 1. Introduction...3 1.1 IP Address and Domain Name...3 2. Sending Files to PageScope Router...4 2.1 MFP Device
FUGU - SFTP FOR MACS- REFERENCE GUIDE
Information Technology FUGU - SFTP FOR MACS- REFERENCE GUIDE INTRODUCTION This document assumes that Fugu is already installed on your computer. If you don t have Fugu, CSUN faculty, staff and students
Magento Extension Point of Sales User Manual Version 1.0
Magento Extension Point of Sales Version 1.0 1. Overview... 2 2. Integration... 2 3. General Settings... 3 3.1 Point of sales Settings... 3 3.2 Magento Client Computer Settings... 3 4. POS settings...
SOPHOS PureMessage Anti Spam Program
SOPHOS PureMessage Anti Spam Program The following FAQ s should help clarify some questions you might have about Villanova s new anti spam quarantining program. If your question is not answered below,
This exhibit describes how to upload project information from Estimator (PC) to Trns.port PES (server). Figure 1 summarizes this process.
Facilities Development Manual Chapter 19 Plans, Specifications and Estimates Section 5 Estimates Wisconsin Department of Transportation Exhibit 10.5 Uploading project from Estimator to Trns port PES September
Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro
Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro, to your M: drive. To do the second part of the prelab, you will need to have available a database from that folder. Creating a new
INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO:
INTRODUCTION: You can extract data (i.e. the total cost report) directly from the Truck Tracker SQL Server database by using a 3 rd party data tools such as Excel or Crystal Reports. Basically any software
Xerox Multifunction Devices. Verify Device Settings via the Configuration Report
Xerox Multifunction Devices Customer Tips March 15, 2007 This document applies to these Xerox products: X WC 4150 X WCP 32/40 X WCP 35/45/55 X WCP 65/75/90 X WCP 165/175 X WCP 232/238 X WCP 245/255 X WCP
Configuring the SST DeviceNet OPC Server
Overview This application note describes the steps necessary to configure the SST DeviceNet OPC Server for use under Windows NT (Service Pack 3 or higher). This example shows how to set up a configuration
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
Using the HostAway Members Panel
Using the HostAway Members Panel 1. Below is the home page of the HostAway member s panel. It gives you a quick overview of your domain with the menu on the left side. We will go through those menu options
WorldShip Install on a Single or Workgroup Workstation
PRE-INSTALLATION INSTRUCTIONS: This document discusses using the WorldShip DVD to install WorldShip. You can also install WorldShip from the web. Go to the following web page and click on the appropriate
PaperClip Audit System Installation Guide
Installation Guide Version 1.0 Copyright Information Copyright 2005, PaperClip Software, Inc. The PaperClip32 product name and PaperClip Logo are registered trademarks of PaperClip Software, Inc. All brand
The FTP Monitor application performs the following main functions:
FTP Monitor Application The FTP Monitor application performs the following main functions: 1. Periodically monitors the files to be uploaded. 2. Automatically compresses and encrypts the files to be uploaded.
Welcome to EMP Monitor (Employee monitoring system):
Welcome to EMP Monitor (Employee monitoring system): Overview: Admin End. User End. 1.0 Admin End: Introduction to Admin panel. Admin panel log in. Introduction to UI. Adding an Employee. Getting and editing
Using a Remote SQL Server Best Practices
Using a Remote SQL Server Best Practices This article will show the steps to setting up an SQL based survey starting with a new project from scratch. 1. Creating a New SQL Project from scratch a. Creating
Installing Cobra 4.7
Installing Cobra 4.7 Stand-alone application using SQL Server Express A step by step guide to installing the world s foremost earned value management software on a single PC or laptop. 1 Installing Cobra
HP Application Lifecycle Management
HP Application Lifecycle Management Software Version: 11.00 Microsoft Word Add-in Guide Document Release Date: November 2010 Software Release Date: October 2010 Legal Notices Warranty The only warranties
File Share Service User guide
File Share Service User guide Version: 2.0 Written by: Sriram Rao Last Modified: 03/16/2012 1 Index Index... 2 Overview... 3 Change Log... 4 Login Instructions... 5 Searching files by name or content...
PDG Software. Site Design Guide
PDG Software Site Design Guide PDG Software, Inc. 1751 Montreal Circle, Suite B Tucker, Georgia 30084-6802 Copyright 1998-2007 PDG Software, Inc.; All rights reserved. PDG Software, Inc. ("PDG Software")
WinSCP for Windows: Using SFTP to upload files to a server
WinSCP for Windows: Using SFTP to upload files to a server Quickstart guide Developed by: Academic Technology Services & User Support, CIT atc.cit.cornell.edu Last updated 9/9/08 WinSCP 4.1.6 Getting started
Sharepoint. Overview. Key features of SharePoint:
Sharepoint Overview Sharepoint is a complex enterprise-level collaboration tool that will require some effor to use effectively. If you choose to make it work for you, be prepared to spend some time learning
Rev. 06 JAN. 2008. Document Control User Guide: Using Outlook within Skandocs
Rev. 06 JAN. 2008 Document Control User Guide: Using Outlook within Skandocs Introduction By referring to this user guide, it is assumed that the user has an advanced working knowledge of Skandocs (i.e.
Document Management System 5.6A User Guide
Document Management System 5.6A User Guide Software Documentation This document is the software documentation for the Sage Accpac Document Management System module developed by Visionetix Software. All
Downloading and Installing Core FTP
What is FTP? To transfer the fi les from your computer to a web server, a special protocol (transfer method) is used: FTP - the File Transfer Protocol. This protocol was designed to be able to handle big
FORMS. Introduction. Form Basics
FORMS Introduction Forms are a way to gather information from people who visit your web site. Forms allow you to ask visitors for specific information or give them an opportunity to send feedback, questions,
Crystal Reports Setup
Crystal Reports Setup Table of Contents 2 Table of Contents Crystal Reports Setup... 3 Database Connection... 3 Adding Parameters (Case Specific)... 5 Adding Parameters (Not Case Specific)... 8 Client
How to configure the DBxtra Report Web Service on IIS (Internet Information Server)
How to configure the DBxtra Report Web Service on IIS (Internet Information Server) Table of Contents Install the DBxtra Report Web Service automatically... 2 Access the Report Web Service... 4 Verify
HTML Forms and CONTROLS
HTML Forms and CONTROLS Web forms also called Fill-out Forms, let a user return information to a web server for some action. The processing of incoming data is handled by a script or program written in
HELP DOCUMENTATION SSRPM CITRIX AND MICROSOFT TERMINAL SERVICES
HELP DOCUMENTATION SSRPM CITRIX AND MICROSOFT TERMINAL SERVICES Copyright 1998-2013 Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any
STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER
Notes: STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER 1. These instructions focus on installation on Windows Terminal Server (WTS), but are applicable
UPS WorldShip Install on a Workgroup Remote
PRE-INSTALLATION INSTRUCTIONS: Install UPS WorldShip on the Workgroup Admin. Temporarily disable any virus scan software that you may have installed. Request access to the network share drive created by
How to Backup and FTP your SQL database using E2.
How to Backup and FTP your SQL database using E2. To follow these instructions steps 1 14 must be completed either on the SQL Server or on a workstation that has the SQL Client Tools installed. You may
Ans.: You can find your activation key for a Recover My Files by logging on to your account.
Faqs > Recover Q1. I lost my activation key Ans.: You can find your activation key for a Recover My Files by logging on to your account. Q2. I purchased on-line, when will my activation key be sent to
PCRecruiter Resume Inhaler
PCRecruiter Resume Inhaler The PCRecruiter Resume Inhaler is a stand-alone application that can be pointed to a folder and/or to an email inbox containing resumes, and will automatically extract contact
Creating Personal Web Sites Using SharePoint Designer 2007
Creating Personal Web Sites Using SharePoint Designer 2007 Faculty Workshop May 12 th & 13 th, 2009 Overview Create Pictures Home Page: INDEX.htm Other Pages Links from Home Page to Other Pages Prepare
MyNetFone Virtual Fax. Virtual Fax Installation
Table of Contents MyNetFone Virtual Fax MyNetFone Virtual Fax Installation... 1 Changing the SIP endpoint details for the fax driver... 11 Uninstalling Virtual Fax... 13 Virtual Fax Installation Follow
Server & Workstation Installation of Client Profiles for Windows (WAN Edition)
C ase Manag e m e n t by C l i e n t P rofiles Server & Workstation Installation of Client Profiles for Windows (WAN Edition) T E C H N O L O G Y F O R T H E B U S I N E S S O F L A W Important Note on
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
How to Back Up and Restore an ACT! Database Answer ID 19211
How to Back Up and Restore an ACT! Database Answer ID 19211 Please note: Answer ID documents referenced in this article can be located at: http://www.act.com/support/index.cfm (Knowledge base link). The
Yale Secure File Transfer User Guide
Yale Secure File Transfer For assistance contact the ITS Help Desk 203-432-9000, [email protected] Yale Secure File Transfer User Guide This document provides information and detailed steps for using Yale's
Global Image Management System For epad-vision. User Manual Version 1.10
Global Image Management System For epad-vision User Manual Version 1.10 May 27, 2015 Global Image Management System www.epadlink.com 1 Contents 1. Introduction 3 2. Initial Setup Requirements 3 3. GIMS-Server
Editing your Website User Guide
User Guide Adding content to your Website To add or replace content on your website you will need to log in to your Content Management System (Joomla) using your username and password. If you do not already
MS SQL Server Database Management
MS SQL Server Database Management Contents Creating a New MS SQL Database... 2 Connecting to an Existing MS SQL Database... 3 Migrating a GoPrint MS SQL Database... 5 Troubleshooting... 11 Published April
Microsoft FrontPage 2003
Information Technology Services Kennesaw State University Microsoft FrontPage 2003 Information Technology Services Microsoft FrontPage Table of Contents Information Technology Services...1 Kennesaw State
AutoMerge for MS CRM 3
AutoMerge for MS CRM 3 Version 1.0.0 Users Guide (How to use AutoMerge for MS CRM 3) Users Guide AutoMerge.doc Table of Contents 1 USERS GUIDE 3 1.1 Introduction 3 1.2 IMPORTANT INFORMATION 3 2 XML CONFIGURATION
escan SBS 2008 Installation Guide
escan SBS 2008 Installation Guide Following things are required before starting the installation 1. On SBS 2008 server make sure you deinstall One Care before proceeding with installation of escan. 2.
Queen's Drive Web Access -
Page 1 Queen's Drive Web Access - To access your networked files (Q: Drive) off-campus Most staff members are still on the Novell system for central file storage and should use Netstorage for remote access
ODBC Driver Version 4 Manual
ODBC Driver Version 4 Manual Revision Date 12/05/2007 HanDBase is a Registered Trademark of DDH Software, Inc. All information contained in this manual and all software applications mentioned in this manual
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.
SAS 9.3 Foundation for Microsoft Windows
Software License Renewal Instructions SAS 9.3 Foundation for Microsoft Windows Note: In this document, references to Microsoft Windows or Windows include Microsoft Windows for x64. SAS software is licensed
HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide
HP Quality Center Software Version: 10.00 Microsoft Word Add-in Guide Document Release Date: February 2012 Software Release Date: January 2009 Legal Notices Warranty The only warranties for HP products
FTP Help Guide
MCS FTP (File Transfer Protocol) Version 2 August 2004 The MCS FTP site is for large file transfers that normally would not attach and sent over email. An identity is created for each MCS employee and
SharePoint Wiki Redirect Installation Instruction
SharePoint Wiki Redirect Installation Instruction System Requirements: Microsoft Windows SharePoint Services v3 or Microsoft Office SharePoint Server 2007. License management: To upgrade from a trial license,
SharePoint Password Change & Expiration 3.0 User Guide
SharePoint Password Change & Expiration 3.0 User Guide Copyright Copyright 2008-2013 BoostSolutions Co., Ltd. All rights reserved. All materials contained in this publication are protected by Copyright
2.3 - Installing the moveon management module - SQL version
2.3 - Installing the moveon management module - SQL version The moveon management module consists of two elements: the moveon client and the moveon database. The moveon client contains all the program
ACHIEVE THIRD PARTY MANAGEMENT (3PL)
ACHIEVE THIRD PARTY MANAGEMENT (3PL) USER MANUAL Version 6.5 PRESENTED BY ACHIEVE IT SOLUTIONS Copyright 2012-2016 by Achieve IT Solutions These materials are subject to change without notice. These materials
PaperStream Connect. Setup Guide. Version 1.0.0.0. Copyright Fujitsu
PaperStream Connect Setup Guide Version 1.0.0.0 Copyright Fujitsu 2014 Contents Introduction to PaperStream Connect... 2 Setting up PaperStream Capture to Release to Cloud Services... 3 Selecting a Cloud
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
Installing Client Profiles 6.0
Gathering Software Installing Client Profiles 6.0 You will need to have the following software to perform the install (I will provide the URL s for you to download these if you need to). SQL 2000 Server
User Replicator USER S GUIDE
User Replicator USER S GUIDE Contents 1. Introduction... 2 1.1. User Replicator requirements... 2 2. Creating users in Learning Center from the Active Directory... 3 2.1. Process File... 3 2.2 Users Mappings...
THE WEST AFRICAN EXAMINATIONS COUNCIL 21, HUSSEY STREET, P.M.B. 1022, YABA, LAGOS, NIGERIA
THE WEST AFRICAN EXAMINATIONS COUNCIL 21, HUSSEY STREET, P.M.B. 1022, YABA, LAGOS, NIGERIA THE WEST AFRICAN SENIOR SCHOOL CERTIFICATE EXAMINATION ONLINE REGISTRATION USER MANUAL BY SIDMACH TECHNOLOGIES
The Application Getting Started Screen is display when the Recruiting Matrix 2008 Application is Started.
Application Screen The Application Getting Started Screen is display when the Recruiting Matrix 2008 Application is Started. Navigation - The application has navigation tree, which allows you to navigate
