56 lines
1.4 KiB
PHP
56 lines
1.4 KiB
PHP
<?php
|
|
|
|
// Change this in a live environment!
|
|
error_reporting(-1);
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Display Debug backtrace
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| If set to TRUE, a backtrace will be displayed along with php errors.
|
|
|
|
|
*/
|
|
define('SHOW_DEBUG_BACKTRACE', TRUE);
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Base Url
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This is the url path where the framework is located. Requires trailing
|
|
| slash.
|
|
|
|
|
*/
|
|
define('BASE_URL', '');
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Content Domain
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This is the domain used for serving content, such as css, javascript.
|
|
|
|
|
*/
|
|
define('CONTENT_DOMAIN', '');
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Static Lib Path
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This is the path where the 'assets' directory is on the static domain.
|
|
|
|
|
*/
|
|
define('STATIC_LIB_PATH', CONTENT_DOMAIN.'assets/');
|
|
|
|
|
|
// Set the default paths
|
|
define('SYS_PATH', __DIR__.'/sys/');
|
|
define('MOD_PATH', __DIR__.'/modules/');
|
|
define('APP_PATH', __DIR__.'/app/');
|
|
|
|
// Require the most important files
|
|
require(SYS_PATH . "common.php");
|
|
|