-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
27 lines (27 loc) · 1.07 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
<?php
/**
* ====================================================================================
* Easy Media Script (c) KBRmedia
* ----------------------------------------------------------------------------------
* @copyright This software is exclusively sold at CodeCanyon.net. If you have downloaded this
* from another site or received it from someone else than me, then you are engaged
* in an illegal activity. You must delete this software immediately or buy a proper
* license from http://codecanyon.net/user/KBRmedia/portfolio?ref=KBRmedia.
*
* Thank you for your cooperation and don't hesitate to contact me if anything :)
* ====================================================================================
*
* @author KBRmedia (http://gempixel.com)
* @link http://gempixel.com
* @license http://gempixel.com/license
* @package Easy Media Script
* @subpackage App Request Handler
*/
if(!file_exists("includes/Config.php")){
header("Location: install.php");
exit;
}
include("includes/Config.php");
// Run the app
$app->run();
?>