-
Notifications
You must be signed in to change notification settings - Fork 0
/
path.php
27 lines (22 loc) · 859 Bytes
/
path.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
define( "DOMAIN", 'qwikgame.org' );
define( "SUBDOMAIN", 'www' );
define( "HOST", SUBDOMAIN.'.'.DOMAIN );
define( "QWIK_URL", 'https://'.HOST.'/');
define( "DOC_ROOT", $_SERVER['DOCUMENT_ROOT']);
define( "PATH_PDF", 'pdf/' );
define( "PATH_JSON", 'json/' );
define( "ROOT", DOC_ROOT.'../' );
define( "PATH_CLASS", UP.'class/' );
define( "PATH_DELAYED", UP.'delayed/' );
define( "PATH_HTML", UP.'html/' );
define( "PATH_LANG", UP.'lang/' );
define( "PATH_MARK", UP.'mark/' );
define( "PATH_SERVICE", UP );
define( "PATH_UPLOAD", UP.'uploads/' );
define( "PATH_USER", UP.'user/' );
define( "PATH_VENUE", UP.'venue/' );
define( "PATH_VENUES", UP.'venues/' );
define( "PATH_VENDOR", UP.'vendor/' );
define( "PATH_LOG", '/var/log/'.DOMAIN.'/'.SUBDOMAIN.'.log');
?>