-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.php
34 lines (22 loc) · 834 Bytes
/
global.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
<?php
/* ##### Change Parameters Here ##### */
define('SITE_URL', 'http://survey.sitex.imzcy.com');
define('MYSQL_HOST', 'localhost');
define('MYSQL_USER', 'survey');
define('MYSQL_PASS', 'survey');
define('MYSQL_DBNAME', 'survey');
/* ^^^^^ End Of Change Parameter Here ^^^^^ */
/* ##### Don't Change Here If Not Have To ##### */
// Define Constants
$include_path = array();
define('SITE_ROOT', rtrim(dirname(__FILE__), '/\\') . DIRECTORY_SEPARATOR);
define('LIBRARY_ROOT', SITE_ROOT . 'library' . DIRECTORY_SEPARATOR);
define('SIGNIN_URL', SITE_URL . '/signin/');
define('UUID_LENGTH', 128);
date_default_timezone_set('Asia/Singapore');
// Load Loader Modules
require_once(LIBRARY_ROOT . 'Loader.php');
// Load Modules
LoadModule('core.LDefaultErrorHandler');
/* ^^^^^ End Of Don't Change Here If Not Have To ^^^^^ */
?>