Skip to content
Attendize edited this page Mar 4, 2016 · 9 revisions

These docs are still heavily under construction so excuse the inevitable spelling mistakes etc.

Requirements

Attendize doesn't require anything exotic to run, however, it hasn't been tested on Windows machines (but there's no reason it shouldn't work).

  • PHP >= 5.5.9
  • OpenSSL PHP Extension
  • PDO PHP Extension
  • Mbstring PHP Extension
  • Tokenizer PHP Extension
  • Fileinfo PHP Extesntion
  • GD PHP Extesntion

Installation

Attendize comes with an easy to use web installer. However, if you are familiar with git and the command line you can manually install Attendize quite easily.

Install using the web installer

Step 1

Download the latest install Zip from here

Step 2

Upload the files to your web server.

Step 3

Make sure the following files/folders are writable:

  • Storage/app/
  • Storage/framework/
  • Storage/logs/
  • Storage/cache/
  • .env

Step 4

Create a database.

Step 5

Navigate to http://your-ticket-site.com/install. If all everything is set up correctly you should see the installer.

Enter your database and mail settings and then click install.

Manual Install

Step 1 - Set up the Environment variables

git clone https://github.com/attendize/attendize

cd attendize

cp .env.example .env

vi .env #Set the database and mail settings etc.

php aritisan migrate #Create the database tables

php artisan db:seed #Seed the initial data

You should now be able to navigate to your-site.com/signup where you can set up your user account.

Clone this wiki locally