E-CampusHeaderHeader Image

Features of E - Campus

E-Campus comes equipped with the following features-

  1. Deliver easy-to-use, intuitive tools for instructors, students and administrators.

    Functionality for Instructors

  • Announcements: To send out/ receive announcements on a topic
  • Course Information: Details of the various online courses
  • Staff & Student Information: Send out/ receive Staff & Student Information
  • Course Documents (including video streaming clips)
  • Assignments: View Assignments submitted by students and assign marks

    Students

  • Announcements: To send out/ receive announcements on a topic
  • Course Information: Details of the various online courses
  • Student Information: Send out/ receive Student Information
  • Course Documents: Access course documents
  • Assignments: Submit assignments online
  • Home/ Group Pages: Shareable group pages
  • Alumni Association - Register for Alumni Association/ Search
What is E-Campus?What is E-Campus?
FeaturesFeatures
Flow ChartFlow ChartSuccess FactorsSuccess Factors
ContentBack to HomeBack to HomeImageContent
  • Administrator

  • Admission of students
  • Import/Export Data
  • User Management Area
  • Banner Management
  • Create Main Category
  • Create Sub Category
  • Create Course
  • Create Teacher Profile
  • Certificate/Degree Managemen
  1. Offer effective pedagogical tools, enabling true teaching and learning innovation on the web.
  • Virtual Chat for Student - Teacher interaction, simultaneous online exchange of ideas
  • Student Roster changeable only the administrator
  • Discussion Board for online discussions
  • Group Pages
  • File Exchange for sharing documents online
  1. Provide customizability and integration that furnish an all-encompassing teaching and learning solution for the users, which condiments and simplifies the users’ experience.

  • Video Streaming
  • Import and Export Data from various databases
  • Integration with any payment gateway for online payment

  1. Customization
  2. E - Campus can be customized for the requirements of each university. The code has been written based on a well thought of design where all the issues have been considered beforehand. Thus the code is flexible and scalable. Changes can be made with the minimum effort as long as they do not impact the basic design. Several issues related to customization can be:

    Change of front end: The front end and the back end are entirely separate documents and changing one has no impact on the other. This means that front-end changes can be carried out at a short notice.

    Adding/Blocking/Changing of features: Due to the object oriented/modular approach used during the coding, new features can be added seamlessly without impacting the existing code. The existing code can be modified, new ones added or deleted without hampering the basic structure of the site. This flexibility is achieved mainly by using configuration files, so that the changes need to be made in only one place.

    For example to change the number of records shown at a time after a search, only the configuration file needs to be changed, and the search program itself doesn’t need to be touched.

    Change of flow: Change of flow of information can be handled mainly by changing the navigation links. Very little changes need to be made to the programs.

  3. Security
  4. All care is taken to make sure that critical data is protected from unauthorized access. Access is provided only to members who have come in through the proper channel, i.e. after entering their username and password. Even after logging in the user is allowed to access only the data he/she is authorized to.

    For example an instructor is allowed to read the answers posted by any student. But a student cannot read the answers posted by another student. Maintaining the access rights in a separate place does this.

    Data encryption: All the critical data (passwords/score-sheets etc.) are stored only in encrypted form. The encryption is done using well-known encryption algorithms (RSA, MD5). Thus the data is protected from everybody including the administrators of the web-site.

    Secure Login: Secure login is provided using secure HTTP. All data flow between the client/server computers is in encrypted form.

    Password protection of Data-Base: The data base is protected from unauthorized access. The access is allowed only for specific sets of username, password, hostname and database-name. The database never needs to be accessed directly, its done only through the programs.

  5. Data present in multiple servers.

Some critical data might be present on the clients(university) servers which can be fetched as required. Or the university may upload it to the site from time to time.

Top