-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.php
More file actions
26 lines (20 loc) · 859 Bytes
/
Copy pathglobal.php
File metadata and controls
26 lines (20 loc) · 859 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
<?php
# evilcode.net
# site configuration settings
# $Id$
$_CONF['defaults']['format'] = (isset($_GET['format'])) ? $_GET['format'] : 'xhtml';
$_CONF['defaults']['page_name'] = 'index';
$_CONF['defaults']['page_extension'] = '.page';
$_CONF['defaults']['base_namespace_url'] = 'http://www.evilcode.net/Exhibition/namespaces/';
$_CONF['debug'] = false;
$_CONF['debug_level'] = 3;
$_CONF['db'] = array();
$_CONF['db']['default']['driver'] = 'mysql';
$_CONF['db']['default']['hostname'] = 'sql.evilcode.net';
$_CONF['db']['default']['username'] = 'evilcode';
$_CONF['db']['default']['password'] = 'ev1lc0de';
$_CONF['db']['default']['database'] = 'evilcode';
$_CONF['db']['default']['persistant'] = true;
require_once SITE_BASE . '/lib/php/global.php';
require_once SITE_BASE . '/private/php/application.php';
?>