-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.php
More file actions
29 lines (19 loc) · 725 Bytes
/
Copy pathindex.php
File metadata and controls
29 lines (19 loc) · 725 Bytes
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
<?php
error_reporting(E_STRICT|E_ALL);
// Application configuration
//----------------------------------------------------------------------------------------------
// Configuration
define('CONFIGURATION','development');
// Dingo Location
define('SYSTEM','system');
// Application Location
define('APPLICATION','application');
// Config Directory Location (in relation to application location)
define('CONFIG','config');
// Allowed Characters in URL
define('ALLOWED_CHARS','/^[ \!\,\~\&\.\:\+\@\-_a-zA-Z0-9]+$/');
// End of configuration
//----------------------------------------------------------------------------------------------
define('DINGO',1);
require_once(SYSTEM.'/core/bootstrap.php');
bootstrap::run();