Skip to content
Yupy edited this page Oct 12, 2014 · 5 revisions

Welcome to the BtiTracker-1.5.0 wiki!

Installation

  1. Upload the files from the archive to your server root.
  2. Point your browser to your domain or localhost.
  3. The installation page will appear and follow the installation steps.
  4. After installation open the dir classes and open the file class.Allowed_Staff.php and you will find:
  • 'admincp' => array(2)
  • In the array section you will see number 2 (that's your id) to add more Staff Members after the number 2 add for example 3, 4 (your Staff ID's) like array(2, 3, 4, 5)

Requirements

  1. PHP 5.3 > Above
  2. Apache Web Server 2 > Above or NGINX
  3. MySql Server
  4. MySqli Extension
  5. zlib
  6. mbstring
  7. gd2

How to install requirements on Debian or Debian based Distros

  1. sudo apt-get update
  2. sudo apt-get install apache2
  3. sudo apt-get install mysql-server php5-mysql
  4. sudo mysql_secure_installation and follow the steps (yes) to all.
  5. sudo apt-get install phpmyadmin
  6. sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt php5-gd make
  7. wget http://www.zlib.net/zlib-1.2.8.tar.gz
  8. tar -xvzf zlib-1.2.8.tar.gz
  9. cd zlib-1.2.8
  10. ./configure --prefix=/usr/local/zlib
  11. make
  12. make install
  13. sudo service apache2 restart

And your done :octocat: