-
Notifications
You must be signed in to change notification settings - Fork 6
Installation
KentonJack edited this page Mar 4, 2018
·
6 revisions
- PHP >= 7.2
- MySQL or MariaDB
- Composer
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.soThen, add the following line and restart server.
<Directory "/your/web/site/dir">
RewriteEngine on
RewriteRule "(.*)" "index.php?$1" [PT,QSA]
</Directory>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