Menu

Tree [05e08a] master /
 History

HTTPS access


File Date Author Commit
 Liten 2017-06-26 Joshua Parker Joshua Parker [5a952d] Updated framework http request.
 app 2018-02-28 Joshua Parker Joshua Parker [4b129f] Fixed SHIS screen.
 static 2017-07-17 Joshua Parker Joshua Parker [780328] Removed css belonging to paid module.
 .gitignore 2016-12-24 Joshua Parker Joshua Parker [cc0d9a] Updated .gitignore.
 .htaccess unknown
 LICENSE unknown
 README.md 2017-07-13 Joshua Parker Joshua Parker [f6ca34] Added Youtube channel to readme.
 RELEASE 2017-10-11 Joshua Parker Joshua Parker [25eeeb] Updated release value.
 config.sample.php 2017-06-26 Joshua Parker Joshua Parker [efc1c2] Updated config file.
 etsis unknown
 favicon.ico unknown
 htaccess.txt 2016-12-24 Joshua Parker Joshua Parker [f67ce9] Added htaccess file.
 index.php 2016-10-07 Joshua Parker Joshua Parker [29b7d4] Updated config and index to allow changes based...
 phinx 2016-10-07 Joshua Parker Joshua Parker [8b6b54] Updatd path for migrations and fixed path info.
 phinx.sample.php 2017-06-26 Joshua Parker Joshua Parker [1c9538] Updated phinx config file.

Read Me

eduTrac SIS

eduTrac SIS is an advanced open source student information system for higher education.

System Requirement

  • Minimum of PHP version 5.6x
  • Apache / Nginx
  • Gettext enabled

Features

  • Manage Students
  • Manage Human Resources
  • Manage Staff
  • Manage Faculty
  • Manage Courses
  • Manage Course Sections
  • Manage Roles / Permissions
  • Manage Students / Records
  • Print Course Catalogs
  • Print Section Rosters
  • SQL Interface
  • Manage Applications
  • Enter final grades for GPA calculation
  • Graduate Students
  • Generate Transcripts
  • Set Business Rules
  • Plugin API
  • RESTful API
  • and much more...

Rewrite

Apache

RewriteEngine On

# Some hosts may require you to use the `RewriteBase` directive.
# If you need to use the `RewriteBase` directive, it should be the
# absolute physical path to the directory that contains this htaccess file.
#
# RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]

Nginx

Root Directory

location / {
    try_files $uri /index.php$is_args$args;
}

Subdirectory

location /sis {
    try_files $uri /sis/index.php$is_args$args;
}

Resources.

  • Take eduTrac SIS for a test drive by checking out the full featured demo.
  • Check out the Youtube channel for tips on using eduTrac SIS.
  • Online User's Manual: everything you need to get eduTrac SIS installed and setup.
  • Bug fixing: contribute by helping to squash bugs
  • Handbook: majority of the classes, functions, methods and hooks are documented in the developer's handbook; contribute to it or use it to write plugins for the community.
  • Translate eduTrac SIS into your language