Skip to content

Installation

KentonJack edited this page Mar 4, 2018 · 6 revisions

Server Requirements

Server Setup

If you are running a Nginx server, add the following line in nginx.conf to enable URI redirect and restart server.

location / {
  index index.php index.html;
  try_files $uri/ $uri /index.php?$query_string;
}

For Apache servers: first, uncomment the following line in httpd.conf.

LoadModule rewrite_module lib/httpd/modules/mod_rewrite.so

Then, add the following line and restart server.

<Directory "/your/web/site/dir">
	RewriteEngine on
	RewriteRule "(.*)" "index.php?$1" [PT,QSA]
</Directory>

PHP Extension Requirements

Usually, when you install PHP 7.2 or higher, the following packages will come with it. In case there are missing packages, here is a list of extensions Angel is using

  • JSON PHP Extension
  • GD PHP Extension
  • MySQLi PHP Extension
  • XML PHP Extension
  • Mbstring PHP Extension

Getting Started

Data Structure

Networking

Operations

Features

Clone this wiki locally