webnetwork 5e Installation and Configuration Guide

Size: px
Start display at page:

Download "webnetwork 5e Installation and Configuration Guide"

Transcription

1 webnetwork 5e Installation and Configuration Guide Note: This manual is the property of Stoneware, Inc. It is not to be reproduced, copied, or printed without prior consent from Stoneware, Inc.

2 webnetwork 5e Installation and Configuration Guide by Stoneware, Inc. This document will provide detailed step by step instructions on how to install and upgrade your webnetwork 5e system. Complete product documentation can be located in the webnetwork 5e Installation and Configuration manual.

3 Services 3 1 Services 1.1 webpages Overview webpages was designed to provide school teachers with a simple means of publishing content and information to parents and students. webpages provides a "template" system by which teachers can provide valuable information to their class without becoming and HTML editor or web page designer. webpages simplifies the process of moving content online by providing a common "look and feel" across an entire school district and allowing teachers to rapidly publish educational information. webpages provides the following services: School Branding for creating unique school profiles within a district Registration provides teachers with a "Self Service" configuration of their classes and content Announcements Template Calendar Template Assignments Templates Documents Template Books Template Supplies Template Links Template FAQs Template Search Template Multi-class support Student Lockers Student Lockers Student Lockers were designed so that students and teachers could easily pass documents between one another. Integrated into the template system of webpages, Student Lockers provide teachers with a simple means of accessing class documents for each student. The benefits of student lockers are:

4 4 webnetwork 5e Installation and Upgrade Guide Students can pass documents for review to teachers leveraging their existing home directory Teachers can easily access a student's personal class directory to review and grade documents The Student Locker application is designed to be populated with class and student information from the school's student record system. In order to utilize this feature of webpages schools should be capable of extracting course and student information from their student record system and populating the webpage database tables Requirements Student Lockers requires the following: webnetwork 5e or above webpages is installed and configured on the webnetwork system Students have a home directory on the network Students have the home directory path stored on an attribute of their user object Ability to populate the Locker's student/class table (i.e. - SIFS agent) with student and course information Configuring Student Lockers This section of the document will step the webnetwork administrator through configuration of Student Lockers. 1) Enabling Student Lockers The webnetwork administrator will need to enable the Student Lockers from the webpages Administration screen. A new link labeled "Lockers Administration" should appear after webnetwork 5 has been upgraded to 5e. Follow the steps below to enable Student Lockers: a. From the webpages Administration screen select the Locker Administration link b. Check the Use Student Lockers box c. Select the SAVE button 2) Setting the Virtual Paths Virtual Paths will control webnetwork's access to student directories. There are two

5 Services 5 paths that are defined: Proxy Account Paths - The FOLDER NAME (Virtual Path) of the File System Node that points to the root of all student home directories. This path will be used by a proxy account to access the student's home directory on behalf of a teacher. * The Proxy Account Path can be followed by a subdirectory level setting if required (i.e. - /Students/1). The "1" signifies there are subdirectories below the path specified in the File Services Node that further organize user home directories. As an example: Student Home Directory path is separated by graduation years (i.e. - /Students/2006/jsmith The File Services Node Path is /Students The level setting following the Folder Name would read /Students/1 This setting would notify the webpages application that student home directories are categorized by sub directory and it should search down one sub directory to locate the user's home directory. Student Home Directories - The FOLDER NAME (Virtual Path) of the File System Node that points to the students' home directories. This step requires that the administrator has already created a File Services Node to the student's home directory. The FOLDER NAME that was defined on the File System Node should These two File Services paths will provide both the student (Student Home Directory) and teacher (Proxy Account Path) with access to the student's home directory based on class. Follow the steps below to configure the Virtual Path settings: a. Create a File Services Node to the Student's Home Directory if not already present (remember the FOLDER NAME). This File Service node will use a Stoneware Variable such in the path to dynamically change between student directories. See File Services for more information on how to configure a File System Node. b. Create a File Services Node to the ROOT of the Student Home Directories if not already present (remember the FOLDER NAME). See File Services for more information on how to configure a File System Node. c. Select the ADD button in the PROXY ACCOUNT PATHS section and enter the File Services FOLDER NAME for the Student's Home Directory node d. Select the ADD button in the STUDENT HOME PATHS section and enter the File Services FOLDER NAME for the Student's Home Directory node

6 6 webnetwork 5e Installation and Upgrade Guide e. Select the SAVE button Lockers should be configured within the webpages application. The next step will be to add data into the locker tables from the student record system Importing Student Information Once the Student Locker service has been configured it will need to have student and course data imported in order to provide teachers with a listing of all available students for a given course. webpages maintains two tables that contain this information: STUDENTS and SECTIONENROLLMENT. These two tables create a relationship between the teacher, courses, students, and their home directories on the network. Student Lockers was designed to have the STUDENTS and SECTIONENROLLMENT tables populated by a SIF (School Interoperability Framework ) agent. The agent can be configured to automatically update the two tables with information from the school's student record system. Each table structure is given below: STUDENTS STUDENTDN - varchar STUDENT-FIRSTNAME - varchar STUDENT-LASTNAME - varchar HOMEDIRECTORY - varchar SECTIONENROLLMENT STUDENTDN - varchar TEACHERDN - varchar CLASSNAME - varchar 1) The DN, First Name, and Last Name of each student should be entered into the Students table (Homedirectory will be automatically added by webpages).

7 Services 7 2) The DN of each student, each CLASSNAME they attend, and DN of their teacher for the given class should be entered into the SECTIONENROLLMENT table. * A DN is a distinguished name for an account in directory services. The DNs are used to identify the teacher and student for security purposes and locate their home directory. To test the functionality of Student Lockers the administrator can manually enter a set of student, course, and teacher information into the webpagesdb to verify that it is functioning properly. The steps below will outline how to update the webpagesdb database to store student, teacher, and course information. * Before you begin -create a test student account (i.e. - Student1) that has the home directory and it is defined on the user's home directory attribute. - create a test teacher account (i.e. - Teacher1) -configure the test teacher's account and define a course (i.e. - Math101) within webpages 1. Login to the webnetwork System as an administrative user 2. Select the REPORT BUILDER link under the REPORTS menu 3. Select the QUERY BUILDER tab at the top of the page 4. Select the CONNECTION of webpagesdb 5. Enter the USER ID and password required to connect to the database * sa is the default user ID for webpages systems that use the default Hypersonic database (no password) * If webpages has been configured to use another database (i.e. - MySQL, MSQL, etc) a USER ID/password should be supplied from the database administrator 6. Select the CONNECT button 7. Once connected select the DATABASE OPTIONS icon 8. Select the INTERACTIVE SQL link * This will allow the administrator to manually enter records into the STUDENTS and SECTIONENROLLMENT tables 9. Enter the command below add a student to the table

8 8 webnetwork 5e Installation and Upgrade Guide INSERT INTO STUDENTS VALUES('cn=Student1,ou=students,o=school,'Joe','Student','',''); * Remember to change the DN to reflect the directory structure of your tree 10.Select the EXECUTE SQL button to update the table 11.Enter the command below to enter the student, teacher, and course to the enrollment table INSERT INTO SECTIONENROLLMENT VALUES('cn=Student1,ou=students,o=school','cn=Teacher1,ou=teachers,o=school','Math1 01'); * Remember to change the DN to reflect the directory structure of your tree 12. Select the EXECUTE SQL button to update the table 13. The tables should be updated. Proceed to the next section to test the configuration Accessing Student Lockers Once the student and teacher information has been entered into the STUDENTS and SECTIONENROLLMENT tables the administrator is ready to verify that the Student Locker system is working correctly. Follow the steps below to verify Student Lockers are working correctly: 1. Login into the webnetwork System with the teacher account that was created to test the system 2. Select the webpages link 3. Enter the teacher's personal information if necessary * Note - the teacher should see a LOCKERS template listed on the left-side of the page 4. Select the EDIT PERSONAL INFO option from the select box at the bottom left of the screen

9 Services 9 5. Enter a Class Name of Math101 in the CLASS TO ADD section 6. Select the ADD button 7. Select the UPDATE INFORMATION button 8. Select the LOCKERS template from the left-hand side of the screen 9. ENABLE the template if prompted * Note - The teacher will be prompted if it is the first time he/she has accessed the Lockers template 10.Select the CREATE FOLDERS icon from the upper right-hand corner of the screen * Note - This step will create a Math101 folder under each student's home directory. The teacher will only be able to access student files that exist under the directory that matches the class name. 11.Select the CREATE FOLDERS FOR YOUR STUDENTS button 12.A list will be displayed verifying the directory has been created for each student in the class 13.Select the BACK TO THE STUDENT LOCKER TEMPLATE hyperlink 14.A student dropdown box should be available with a list of all students in the class. Selecting a student will display the contents of the class subdirectory (Math101) that is under the selected student's home directory. 15.Select the ADD icon to upload a file to the student's Math101 subdirectory

GREENSBURG SALEM SCHOOL DISTRICT Application: Portal. Parent Portal Step-by-step Instructions

GREENSBURG SALEM SCHOOL DISTRICT Application: Portal. Parent Portal Step-by-step Instructions GREENSBURG SALEM SCHOOL DISTRICT Application: Portal Parent Portal Step-by-step Instructions INTRODUCTION This guide provides step-by-step instructions for parents to log in and access information through

More information

Parent Portal Documents

Parent Portal Documents Parent Portal Documents v1.0 Error! Reference source not found. Version History Version Date Description I.S. - Template Page No: 1 of 12 Table of Contents Logging into MyEd Parent Portal... 4 Parent Accounts...

More information

connected New User Guide

connected New User Guide connected New User Guide This guide will walk you through how to accomplish the following for programs launched through the McGraw-Hill connected website: Create a Teacher Account Redeem Content Create

More information

HHH Instructional Computing Fall

HHH Instructional Computing Fall Quick Start Guide for School Web Lockers Teacher log-on is the same as for Infinite Campus Student log-on is the same initial log on to the network except no school year is required before their user name

More information

PROGRESS BOOK PARENT ACCESS NAVIGATION

PROGRESS BOOK PARENT ACCESS NAVIGATION PROGRESS BOOK PARENT ACCESS NAVIGATION Enter the following web address into your internet browser. https://parent.laca.org From the resulting screen, you can click on your child s school district icon.

More information

esd Portal: Parent View User Guide v

esd Portal: Parent View User Guide v esd Portal: Parent View User Guide v. 3.2.0 Copyright 2002-2013 eschooldata, LLC All rights reserved. TABLE OF CONTENTS Overview... 3 Account Registration... 3 Logging In... 5 Getting Help... 6 Navigating

More information

esd Portal: Parent View User Guide v

esd Portal: Parent View User Guide v esd Portal: Parent View User Guide v. 3.7.0 Copyright 2002-2013 eschooldata, LLC All rights reserved. TABLE OF CONTENTS Overview... 3 Account Registration... 3 Logging In... 5 Getting Help... 7 Navigating

More information

23.1. esd Parent Portal Parent/Guardian View. Chapter

23.1. esd Parent Portal Parent/Guardian View. Chapter Chapter Rev 2.9 18-May-2011 23.1 Parent Portal Parent/Guardian View This chapter provides a step by step guide for Parents and Guardians to login and access student(s) information through the Parent Portal.

More information

ParentVUE for Secondary Students

ParentVUE for Secondary Students What is ParentVUE? ParentVue is a web portal that allows parents and guardians to access real-time information related to their students. Parents/guardians can view their student's calendars, attendance,

More information

How to access and navigate the Infinite Campus Portal

How to access and navigate the Infinite Campus Portal Ballard County Public Schools How to access and navigate the Infinite Campus Portal This presentation is a demonstration of the Infinite Campus Portal. For a detailed description of each area of the portal,

More information

esd Portal: Parent View User Guide v

esd Portal: Parent View User Guide v esd Portal: Parent View User Guide v. 3.9.0 Copyright 2002-2014 eschooldata, LLC All rights reserved. TABLE OF CONTENTS Overview... 3 Account Registration... 3 Logging In... 5 Getting Help... 7 Navigating

More information

STUDENT PORTAL VIEW LEARNING GUIDE

STUDENT PORTAL VIEW LEARNING GUIDE STUDENT PORTAL VIEW LEARNING GUIDE Central Susquehanna Intermediate Unit, USA TABLE OF CONTENTS Overview... 3 Logging In... 3 Getting Help... 4 Navigating the Portal... 5 Messages... 5 Profile... 8 Attendance...

More information

SIS - BASIC NAVIGATION LEARNING GUIDE. v

SIS - BASIC NAVIGATION LEARNING GUIDE. v SIS - BASIC NAVIGATION LEARNING GUIDE v. 5.4.0 TABLE OF CONTENTS Login Screen... 3 Home Page... 3 Screen Size... 5 Permissions... 5 Navigation... 5 Banner... 5 Primary and Secondary Menus... 6 District/Schools

More information

Does not add an additional server to the configuration. Limits communication failures between the webnetwork Server and Directory Service

Does not add an additional server to the configuration. Limits communication failures between the webnetwork Server and Directory Service Chapter 21: External Users 398 21.2 OpenDS OpenDS is an open source community project building a free and comprehensive next generation directory service. OpenDS is designed to address large deployments,

More information

SchoolDesk Teacher Webpage Training Document. 2013/2014 School Year

SchoolDesk Teacher Webpage Training Document. 2013/2014 School Year SchoolDesk Teacher Webpage Training Document 2013/2014 School Year Teacher Website Criteria for SchoolDesk EVERY teacher will need to create a teacher webpage through SchoolDesk. One of the benefits with

More information

Skyward Family Access Instruction Manual

Skyward Family Access Instruction Manual Signing onto Family Access Skyward Family Access Instruction Manual 1. Parents must notify the school of their personal email address to gain access to Family Access. a. Methods to notify the school of

More information

Camp Hill School District. Guide to Your Parent Portal

Camp Hill School District. Guide to Your Parent Portal Camp Hill School District Guide to Your Parent Portal Guide to Your Parent Portal Table of Contents Login..3-6 Basic Navigation 7-8 My Account (Updating Demographic Information).9-10 Miscellaneous..10

More information

Welcome to the Holmdel Board of Education PowerSchool Parent s Portal

Welcome to the Holmdel Board of Education PowerSchool Parent s Portal Welcome to the Holmdel Board of Education PowerSchool Parent s Portal This guide will detail the basic steps you will need to access your child s current academic status. With your internet browser you

More information

Creating Your Account

Creating Your Account Soledad Unified School District Online Parent Portal Account Setup Tutorial The following are step-by-step procedures to create an online parent account to access your child s grades, attendance, schedules,

More information

Cornerstone Household: Introduction to Cornerstone: For Parents Page 1

Cornerstone Household: Introduction to Cornerstone: For Parents Page 1 Cornerstone Household: Introduction to Cornerstone: For Parents Page 1 Introduction to Cornerstone: For Parents Cornerstone is the program that we will be using for you to access your students information.

More information

Activating your Home Access Center Account

Activating your Home Access Center Account Returning Ysleta students can register online. To register online you will need to activate your Home Access Center account. During the activation process, the district will use the email you provided

More information

Creating Your Parent Account

Creating Your Parent Account Parent Portal Guide for Parents 2016-2017 Creating Your Parent Account Before using the parent portal, you must pick up your access id and password from the school. This information must be picked up in

More information

Use the table below to learn about the various user roles currently available in the Educator Dashboard. User Role For Who?

Use the table below to learn about the various user roles currently available in the Educator Dashboard. User Role For Who? How to Create Educator Accounts in Partner Districts Educators with a Site Admin or District Admin user role in the Educator Dashboard on CaliforniaColleges.edu have the ability to create accounts for

More information

NOTE: The next time you sign in the system will remember your Username and Password. See example on Page 2 of this tutorial.

NOTE: The next time you sign in the system will remember your Username and Password. See example on Page 2 of this tutorial. Type in APTPLUS Username and Password then click on Sign In. Log on to WWW.APTPLUS.ORG and type in your APTPLUS Username and Password. Click on Sign In to access the Learn360 service. NOTE: The next time

More information

Long Beach Unified School District. Portal User s Guide. August 2014

Long Beach Unified School District. Portal User s Guide. August 2014 Long Beach Unified School District Portal User s Guide August 2014 INTRODUCTION The Long Beach Unified School District s PORTAL (mylbusd) provides users with access to District applications, services,

More information

APS Mobile App Frequently Asked Questions

APS Mobile App Frequently Asked Questions How much does the APS Mobile App cost to download? The APS Mobile App is free to download! How do I install the APS Mobile App? Android Device: 1. Visit the Google Play Store 2. Search for Atlanta Public

More information

Online Student Enrollment Parent Portal (SPS Staff Only: Non-Resident Students)

Online Student Enrollment Parent Portal (SPS Staff Only: Non-Resident Students) Online Student Enrollment Parent Portal (SPS Staff Only: Non-Resident Students) Below is a set of detailed instructions and the link to the District s Online Enrollment Application: Go to the District

More information

Report HQ. Quick Start Guide. Report HQ Quick Start Guide - Version 1.2

Report HQ. Quick Start Guide. Report HQ Quick Start Guide - Version 1.2 Report HQ Quick Start Guide STEP 1 Requesting An Account 1) Request an account via the Report HQ Request Form 2) Nasdaq will verify your account 3) Once your account is verified and provisioned, you will

More information

ManageBac Parent Guide

ManageBac Parent Guide PARENT GUIDE 1 Getting Started 1.1 Accessing Your Account 1.2 Registration 1.3 Navigating Through ManageBac 1.4 Updating your E mail Address, Password and Contact Information 1.5 Switching between Children

More information

NAVIGATING THE PARENT PORTAL

NAVIGATING THE PARENT PORTAL NAVIGATING THE PARENT PORTAL Log in to the Campus Portal with your user name and password. Click the log in button. Once logged in, an index of accessible information for the household as a whole is listed

More information

PowerSchool Parent Portal Quick Reference Card

PowerSchool Parent Portal Quick Reference Card What is PowerSchool Parent Portal? PowerSchool Parent Portal gives parents and students access to realtime information including attendance, grades and detailed assignment descriptions. Once parents have

More information

Table of Contents Part 1 Before Getting Started: Pages 1-5 Part 2 Getting into Stoneware and Brainhoney: Pages 5 13

Table of Contents Part 1 Before Getting Started: Pages 1-5 Part 2 Getting into Stoneware and Brainhoney: Pages 5 13 Table of Contents Part 1 Before Getting Started: Pages 1-5 Part 2 Getting into Stoneware and Brainhoney: Pages 5 13 PART 1 Before Getting Started: 1) Make sure that your system meets all minimum technical

More information

Beach Park School District #3 Overview and User Guide

Beach Park School District #3 Overview and User Guide Beach Park School District #3 Overview and User Guide PowerSchool Parent Portal gives parents access to confidential real-time information such as attendance, grades, assignments, and so much more! It

More information

Bloomsburg Area School District Parent Portal Instructions

Bloomsburg Area School District Parent Portal Instructions Bloomsburg Area School District Parent Portal Instructions Bloomsburg Area School District parents now have the ability to access important, up-to-date, student information online. Our online Grade Book

More information

PowerSchool Parent Portal Quick Reference Card

PowerSchool Parent Portal Quick Reference Card What is PowerSchool Parent Portal? PowerSchool Parent Portal gives parents and students access to realtime information including attendance, grades and detailed assignment descriptions. Once parents have

More information

PARENT PORTAL VIEW LEARNING GUIDE

PARENT PORTAL VIEW LEARNING GUIDE PARENT PORTAL VIEW LEARNING GUIDE Central Susquehanna Intermediate Unit, USA TABLE OF CONTENTS Overview... 3 Account Registration... 3 Logging In... 5 Getting Help... 7 Navigating the Portal... 8 Messages...

More information

SchoolFusion Parent Guide Student ID Number plus Birthday With Personal Dashboard 2.0 Audience: Website Administrators, Parents

SchoolFusion Parent Guide Student ID Number plus Birthday With Personal Dashboard 2.0 Audience: Website Administrators, Parents 6:45:22 AM SchoolFusion Parent Guide Student ID Number plus Birthday With Personal Dashboard 2.0 Audience: Website Administrators, Parents What is SchoolFusion? SchoolFusion is where you can view all your

More information

1 MyEducationBC. 2 Logging In. Student Portal User Instructions

1 MyEducationBC. 2 Logging In. Student Portal User Instructions 1 MyEducationBC The MyEducationBC (MyEdBC) application is a secure portal used in most school districts in the Province of BC. Security is guided by the rules and regulations of the School Act and Freedom

More information

Parent Portal. Registration and Login

Parent Portal. Registration and Login EPISD Parent Portal Registration and Login Parent Portal Overview Register Online 1. Step-by-step tutorial 2. Register together Login Objectives 1. View Report Card and Attendance 2. Email teacher as introduction

More information

How to access Launchpad and Textbooks online

How to access Launchpad and Textbooks online Quest Tech Tips Launchpad & Textbooks Online Directions (front and back) How to setup your mobile device to receive school/district notifications (front and back) Edline parent instructions Free Microsoft

More information

To Access Google Classroom: 1. Go to the MCSD Webpage (www.mcsdk12.org). 2. Click on the Web Apps link.

To Access Google Classroom: 1. Go to the MCSD Webpage (www.mcsdk12.org). 2. Click on the Web Apps link. To Access Google Classroom: 1. Go to the MCSD Webpage (www.mcsdk12.org). 2. Click on the Web Apps link. 3. Click on the Google Classroom icon. 4. Enter your SCHOOL DISTRICT EMAIL ADDRESS and press NEXT.

More information

Welcome to the RISD Materials /Media Center Online Public Access Catalog

Welcome to the RISD Materials /Media Center Online Public Access Catalog Welcome to the RISD Materials /Media Center Online Public Access Catalog For years now, the Media Center has used Term-Lite as the online booking program. Starting in the 2016-2017 school year, the change

More information

MyEducation BC: Introduction to the Student Portal

MyEducation BC: Introduction to the Student Portal MyEducation BC: Introduction to the Student Portal 1. Navigate to the following link from any internet connected computer: https://www.myeducation.gov.bc.ca/aspen/logon.do Enter you Login ID (Your Student

More information

PowerSchool Parent Portal

PowerSchool Parent Portal ALBEMARLE COUNTY PUBLIC SCHOOLS PowerSchool Parent Portal A Guide for Parents Rachel Collier & Mark Leach Revised: 10/26/2015 This user guide will provide parents with information about accessing and using

More information

PearsonAccess User Guide PARCC

PearsonAccess User Guide PARCC PearsonAccess User Guide PARCC Copyright 2013, Pearson Education, Inc. Published December 16, 2013 1.0 Document Revisions... 5 2.0 Getting Started... 6 2.1 Getting Started - Introduction... 7 2.2 Getting

More information

Wollemi College. How to use the Parent Portal. I. Parent Portal Pre-Requisites. II. Accessing the Parent Portal. III. Parent Teacher Interview

Wollemi College. How to use the Parent Portal. I. Parent Portal Pre-Requisites. II. Accessing the Parent Portal. III. Parent Teacher Interview Wollemi College How to use the Parent Portal I. Parent Portal Pre-Requisites II. Accessing the Parent Portal III. Parent Teacher Interview IV. Class Directory 1 P a g e Welcome to Wollemi College s Parent

More information

Your current address will be used to access schooltool. Please provide the school registrar with this if you haven t already done so.

Your current  address will be used to access schooltool. Please provide the school registrar with this if you haven t already done so. Parent Guide Quick Reference Worksheet For schooltool s ParentPortal Parent Guide -- Quick Reference Worksheet Accessing your student's on-line schooltool school records is now a simple matter. There are

More information

Schoolwires Website How to Access and Modify Content of Teacher Pages

Schoolwires Website How to Access and Modify Content of Teacher Pages Schoolwires Website How to Access and Modify Content of Teacher Pages Accessing Teacher Pages 1. To access your WebPages to modify or change content, go to: http://palisadessd.org 2. In the top right navigation

More information

FAMILY ACCESS TUTORIAL

FAMILY ACCESS TUTORIAL FAMILY ACCESS TUTORIAL You may access your parent account using the login and password that you received from the school office. Your Family Access account is where you will find student grades, food service

More information

Quick Guide to TIDE: Adding Users, Students, and Student Test Settings

Quick Guide to TIDE: Adding Users, Students, and Student Test Settings Quick Guide to TIDE: Adding Users, Students, and Student Test Settings School administrators use TIDE to add and manage user (i.e. adult) accounts, and to add students participating in Idaho assessments.

More information

SAM Server Utility User s Guide

SAM Server Utility User s Guide SAM Server Utility User s Guide Updated July 2014 Copyright 2010, 2012, 2014 by Scholastic Inc. All rights reserved. Published by Scholastic Inc. PDF0157 (PDF) SCHOLASTIC, READ 180, SYSTEM 44, SCHOLASTIC

More information

NOTE: New directions for accessing the Parent Portal using Single Sign On

NOTE: New directions for accessing the Parent Portal using Single Sign On NOTE: New directions for accessing the Parent Portal using Single Sign On PROCESS STEPS SCREEN SHOTS Launch a web browser (Internet Explorer, Safari, or FireFox) and go to PowerSchool Parent Portal URL:

More information

Campus Portal User Guide

Campus Portal User Guide Campus Portal User Guide Introduction to this User Guide This user guide provides information on how parents and students can use the Campus Portal. Detailed instructions are available for logging into

More information

PowerSchool Parent Portal User Guide PowerSchool Student Information System

PowerSchool Parent Portal User Guide PowerSchool Student Information System PowerSchool Student Information System Document Properties Copyright Owner Copyright 2007 Pearson Education, Inc. or its affiliates. All rights reserved. This document is the property of Pearson Education,

More information

Setting up Your Teacher Website Using ischooldistrict

Setting up Your Teacher Website Using ischooldistrict Setting up Your Teacher Website Using ischooldistrict This year we are transferring our web hosting and layout to a central system controlled and maintained at the county level. The goals of centralizing

More information

ACCUPLACER Placement Validity Study Guide

ACCUPLACER Placement Validity Study Guide ACES ACES (Admitted Class Evaluation Service TM ) ACCUPLACER Placement Validity Study Guide February 2018 COLLEGEBOARD.ORG/ACES Table of Contents Page ACES Overview ACCUPLACER Placement Validity Study

More information

Report Card. Management Technology Helpdesk

Report Card. Management Technology Helpdesk Management Technology Helpdesk May 2015 Contents Report Card...3 Log In... 3 Select a School... 3 Students... 4 Settings... 4 Format... 5 Sort/Select... 5 Content... 6 GPA... 6 Legend... 6 Marks.7 PowerSchool

More information

New Student Online Enrollment through txconnect

New Student Online Enrollment through txconnect New Student Online Enrollment through txconnect Parents with students new to the district will be able to complete basic enrollment information through the New Student Enrollment section available in txconnect

More information

Winter School Year STI PD. Instructor User Manual

Winter School Year STI PD. Instructor User Manual Winter 2008-2009 School Year STI PD Instructor User Manual Information in this document is subject to change without notice. Student and school data used herein are fictitious unless otherwise noted. The

More information

Fort Bend Independent School District Access Guide to Family Access

Fort Bend Independent School District Access Guide to Family Access Begin by going to the FBISD website at: https://www.fortbendisd.com/family-access In the upper right, click on the Family Access icon. These are the screen resolutions, operating systems and supported

More information

USER GUIDES. Peel International Languages Registration Parent Guide

USER GUIDES. Peel International Languages Registration Parent Guide USER GUIDES Peel International Languages Registration Parent Guide June 2017 REGISTERING FOR PEEL INTERNATIONAL LANGUAGES CLASSES To register for any Peel International Languages classes online, please

More information

1 MyEducationBC. 2 Logging In. Family Portal User Instructions

1 MyEducationBC. 2 Logging In. Family Portal User Instructions 1 MyEducationBC The MyEducationBC (MyEdBC) application is a secure portal used in most school districts in the Province of BC. Security is guided by the rules and regulations of the School Act and Freedom

More information

Faculty CI-Web Attendance Logging into CI-Web

Faculty CI-Web Attendance Logging into CI-Web Orange Education Center Continuing Education Faculty CI-Web Attendance Logging into CI-Web STEPS Open the internet. There are 2 ways to access CI- Web Attendance: Go to the following link: http://webatt.rsccd.edu

More information

esd Portal: Parent View User Guide v

esd Portal: Parent View User Guide v esd Portal: Parent View User Guide v. 5.0.0 Copyright 2002-2016 eschooldata, LLC All rights reserved. TABLE OF CONTENTS Overview... 3 Parent Portal Registration... 3 Logging In... 5 Getting Help... 7 Navigating

More information

Creating a Parent Portal Account

Creating a Parent Portal Account Creating a Parent Portal Account Step 1: Go to https://focus.bayschools.net/focus/auth Step 2: Click on I DO NOT have an Account Registered on the Parent Portal but my child is Actively Enrolled Welcome

More information

esd Portal: Parent View User Guide v

esd Portal: Parent View User Guide v esd Portal: Parent View User Guide v. 5.9.0 Copyright 2002-2018 eschooldata, LLC All rights reserved. TABLE OF CONTENTS Overview... 3 Parent Portal Login Page... 3 Online Registration...4 Parent Portal

More information

Self-Registration TEACHER

Self-Registration TEACHER Self-Registration TEACHER If you already have a cengage.login.com account or skip to STEP 7. 2 1. Using the link you received from your DISTRICT, go to the NGLSync Dashboard. 2. Choose your SCHOOL from

More information

STUDENT REGISTRATION DATABASE (SRD) TABLE of CONTENTS

STUDENT REGISTRATION DATABASE (SRD) TABLE of CONTENTS STUDENT REGISTRATION DATABASE (SRD) TABLE of CONTENTS FUNCTION LOCATION Teacher Registration 2-3 Certification Box (must be checked 6 before submitting scores for AT/TAR) Count-Column Button 4 Current

More information

How to Access the Username and Password for your Student(s)

How to Access the Username and Password for your Student(s) How to Access the Username and Password for your Student(s) Your student can access her/his ClassLink login information three ways Your student will receive ClassLink login information from his/her classroom

More information

EDMODO USER GUIDE. Table of Contents. 1 Edmodo User Guide. A. Getting started 1. Setting up an account 2. Edmodo settings 3.

EDMODO USER GUIDE. Table of Contents. 1 Edmodo User Guide. A. Getting started 1. Setting up an account 2. Edmodo settings 3. 1 Edmodo User Guide EDMODO USER GUIDE Table of Contents A. Getting started 1. Setting up an account 2. Edmodo settings 3. Creating a group B. Edmodo tools 1. Notes 2. Tags 3. Editing, deleting and popout

More information

Family/Student Access Home Screen

Family/Student Access Home Screen Family/Student Access Home Screen Below is a review of several areas on the Home Screen that parents/guardians will utilize. 1. If you have multiple children, you will use the All Students drop down arrow

More information

Goals and Objectives

Goals and Objectives Goals and Objectives This example lists NJ Core Content Standards, with the strands for each standard shown as links in outline form. The Special Education Management Module also has choices for non core

More information

My Site. Introduction

My Site. Introduction My Site Introduction My Site is a component of the portal that is available to all NB educators. It is a personalized site that provides all users with the following features: A place to save and share

More information

Gaggle 101 User Guide

Gaggle 101 User Guide Gaggle 101 User Guide Home Tab The Home tab is the first page displayed upon login. Here you will see customized windows or widgets. Once set, the widgets can be accessed directly by clicking on them from

More information

Student Registration in ACE Database

Student Registration in ACE Database Student Registration in ACE Database 1.Go to: www.acementor.org > Students > Registration/login This will direct you to the registration/login page: 2(a)Returning Students Only: If you have participated

More information

Guide to Family Access and Student Access For Parents/Guardians and Students

Guide to Family Access and Student Access For Parents/Guardians and Students Guide to Family Access and Student Access For Parents/Guardians and Students Family Access and Student Access are two modules that allow parents/guardians and students to view and sometimes edit student

More information

Campus PORTAL INSTRUCTIONAL PACKET for FCE Leads. August 23, 2016

Campus PORTAL INSTRUCTIONAL PACKET for FCE Leads. August 23, 2016 Campus PORTAL INSTRUCTIONAL PACKET for FCE Leads August 23, 2016 Table of Contents Contents TABLE OF CONTENTS... 2 SECTION 1 ACCESSING INFINITE CAMPUS... 3 PARENT PORTAL LETTER... 3 ACCOUNT ACTIVATION...

More information

Student Guide to Access Progress Reports and Report Card High School and Middle School Only

Student Guide to Access Progress Reports and Report Card High School and Middle School Only Student Guide to Access Progress Reports and Report Card High School and Middle School Only While using an internet connected device, go to https://sayreville.oncourseconnect.com Click the Login In button

More information

Created: 8/16/2013 North Schuylkill School District Page 1

Created: 8/16/2013 North Schuylkill School District Page 1 Parents Request Portal Accounts Step 1: Parents will need to go to https://web4.schoolport.org/plexus/parentportal/ Parents will view this screen as their log on screen. If they already have accounts,

More information

MSAD #40 Infinite Campus Parent Portal Guide

MSAD #40 Infinite Campus Parent Portal Guide Accessing the Portal: Portal Access is available by clicking the Infinite Campus Portal link from the home page of each school or by typing the following into your web browser s address bar: https://maine.infinitecampus.org/campus/portal/msad40.jsp

More information

Organization Management System OMS Account Information

Organization Management System OMS Account Information How Do I Create an Account? 1. Go to any Public Calendar of the OMS. Example: http://sbcss.k12oms.org 2. Click the Manage OMS Account link at the top of the screen. 3. Click the Create Account link. 4.

More information

GMRT Data Import. 3. When you have finished adding data to the template, click File, and then click Save As

GMRT Data Import. 3. When you have finished adding data to the template, click File, and then click Save As GMRT Data Import The three (3) GMRT Import file templates are located on the Welcome page as well as under the Locations, Staff and Student tabs respectively. Creating Location, Staff, and/or Student Files

More information

Bengal Success Portal

Bengal Success Portal Bengal Success Portal Adviser Guide Welcome to the Bengal Success Portal! The Bengal Success Portal gives you a convenient way to keep track of your students and ensure timely intervention with instructors,

More information

Goucher College Online Course Sites: Basic Navigation in Canvas

Goucher College Online Course Sites: Basic Navigation in Canvas Goucher College Online Course Sites: Basic Navigation in Canvas Find Your Course Material Edit a Topic Section Upload a File Drag and Drop Method to Upload a File Create a Content Page Create a Wiki Page

More information

STUDENT REGISTRATION DATABASE (SRD) TABLE of CONTENTS

STUDENT REGISTRATION DATABASE (SRD) TABLE of CONTENTS STUDENT REGISTRATION DATABASE (SRD) TABLE of CONTENTS FUNCTION LOCATION Teacher Registration 2 3 Certification Box (must be checked 6 7 before submitting scores for AT/TAR) Count Column Button 5 Current

More information

Part 2 Uploading and Working with WebCT's File Manager and Student Management INDEX

Part 2 Uploading and Working with WebCT's File Manager and Student Management INDEX Part 2 Uploading and Working with WebCT's File Manager and Student Management INDEX Uploading to and working with WebCT's File Manager... Page - 1 uploading files... Page - 3 My-Files... Page - 4 Unzipping

More information

SCHOOL COLLABORATION SITES Reference Guide

SCHOOL COLLABORATION SITES Reference Guide SCHOOL COLLABORATION SITES Reference Guide Information Technology Services SCHOOL COLLABORATION SITES Reference Guide Information Technology Services 13135 SW 26 ST Miami, FL 33176 Phone 305.995.3770 Fax

More information

ClassLink Student Directions

ClassLink Student Directions ClassLink Student Directions 1. Logging-in Open a web browser, any browser and visit https://launchpad.classlink.com/wssd Your username and password are the same as your WSSD login credentials that you

More information

Using the New UCOP UAT Validation Reports For Undergraduate Admissions

Using the New UCOP UAT Validation Reports For Undergraduate Admissions To access the new UAT validation reports in Cognos for Course Enrollment data, please follow the instructions outlined below: 1. Copy and paste the following link into your browser - http://data.ucop.edu.

More information

Google Classroom Help Sheet

Google Classroom Help Sheet 1 Google Classroom Help Sheet Table of Contents Introduction Signing into Google Classroom Creating a Class Changing a Class Theme Adding a Teacher Photo to the Class Renaming or Deleting a Class Adding

More information

Google Apps for Schools

Google Apps for Schools Google Apps for Schools A Simple User Guide J Foster, B Wellings & P Munro 1 Version: 1 (May 2016) Contents Quick Access... 3 Google Drive... 4 Create and Manipulate... 4 Share... 5 Google Docs... 6 Create

More information

Items in TAG. Adding Items in TAG

Items in TAG. Adding Items in TAG www.dmac-solutions.net 1.866.988.6777 support@dmac-solutions.net Items in TAG Log in to DMAC Solutions at https://www.dmac-solutions.net. *Teacher passwords are automatically generated based on class roster

More information

Tempe School District #3 Synergy Student Attendance Information

Tempe School District #3 Synergy Student Attendance Information Synergy Attendance Tempe School District #3 Synergy Student Attendance Information Attendance In Synergy, teachers will be taking attendance online each morning. They can choose to take attendance based

More information

Instructional Improvement System (IIS) Dashboard District User Guide Statewide Longitudinal Data System (SLDS)

Instructional Improvement System (IIS) Dashboard District User Guide Statewide Longitudinal Data System (SLDS) Instructional Improvement System (IIS) Dashboard District User Guide Statewide Longitudinal Data System (SLDS) June 10, 2014 Page 1 of 36 IIS Dashboard District User Guide 2 Contents Project Overview...

More information

My Calendars and ical PowerSchool Student Information System Parent Access

My Calendars and ical PowerSchool Student Information System Parent Access PowerSchool Student Information System Parent Access Document Properties My Calendars and ical Copyright Owner 2004 Apple Computer, Inc. All rights reserved. This document is the property of Apple Computer,

More information

Student Online Registration Version 2.0. Getting Started

Student Online Registration Version 2.0. Getting Started 1 Getting Started Before you begin the Student Online Registration you must have an e-mail address and immediate access to read email messages from it. To use the Student Online Registration, you must

More information

Enroll a New Student

Enroll a New Student The txsuite How To Guide Series Connect tx Web-based Access for Teachers, Parents, and Students How to: Enroll a New Student Developed by the T E XA S CO M P U T E R CO O P E R AT I V E Business and Student

More information

Quick Guide to TIDE: Adding Users and Students

Quick Guide to TIDE: Adding Users and Students Quick Guide to TIDE: Adding Users and Students School administrators use TIDE to add and manage user (i.e. adult) accounts, and to add students participating in ISAT assessments. This Quick Guide provides

More information

1. If you have multiple students attending SJUSD, select a student from the drop-down on the top-left of the screen

1. If you have multiple students attending SJUSD, select a student from the drop-down on the top-left of the screen http://go.sjusd.org/icparentportal INFINITE CAMPUS PARENT/STUDENT PORTAL 1. If you have multiple students attending SJUSD, select a student from the drop-down on the top-left of the screen 2. Calendar

More information

PowerSchool Parent Portal. Instructions

PowerSchool Parent Portal. Instructions PowerSchool Parent Portal Instructions What is the parent portal? Can view grades and attendance. Can view detailed assignment information if teachers utilize the teachers grade book. Can setup automatic

More information