-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
45 lines (34 loc) · 1.05 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
* @author Raiza Rhamdan (Leonardo DaVchezt) <[email protected]>
* @copyright Copyright (c), 2021 Raiza Rhamdan
* @license MIT public license
*/
if (version_compare(phpversion(), '7.2.0', '<')) die('php >= 7.2.0 is required');
if (!file_exists('vendor/autoload.php')) {
die('please run composer install first!');
} elseif (!file_exists('config.php')) {
die('no config file found, please copy config.example.php to config.php');
}
$temp = realpath(dirname(__FILE__)) . '/temp';
if (!is_dir($temp)) {
mkdir($temp);
}
$replay = realpath(dirname(__FILE__)) . '/uploads/replay';
if (!is_dir($replay)) {
mkdir($replay);
}
if (empty(session_id())) {
session_start();
}
ini_set('output_buffering', 'On');
ini_set('output_compression', 'On');
ini_set('output_compression_level', '6');
use app\App;
use app\AppEngine;
use flight\Engine;
date_default_timezone_set('Asia/Jakarta');
define('__DAVCHEZT', true);
require 'vendor/autoload.php';
$app = new App(new AppEngine(realpath(dirname(__FILE__))), require 'config.php');
$app->start();