-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathframework.config.php
35 lines (30 loc) · 1.39 KB
/
framework.config.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
35
<?php
define('APP_DB_DRIVER','');
define('APP_DB_ENGINE','MyISAM');
define('APP_DB_HOST','');
define('APP_DB_DATABASE','');
define('APP_DB_USER','');
define('APP_DB_PASS','');
define('APP_DB_PCONNECT',false);
define('LANG_CHARSET_CODE','iso-8859-1'); // iso-8859-1, utf-8
define('DB_CHARSET_CODE','latin1'); // latin1, utf8
// Memcached (high-performance shared memory cache)
// optional, memcached 1.2.x + extension must be enabled
// list multiple servers comma-delimited: host1:port,host2:port
//define('DEVBLOCKS_CACHE_PREFIX',''); // ONLY A-Z, a-z, 0-9 and underscore
//define('DEVBLOCKS_MEMCACHED_SERVERS','127.0.0.1:11211');
//@ini_set('memory_limit', '64M');
/****************************************************************************
* [JAS]: Don't change the following unless you know what you're doing!
***************************************************************************/
define('APP_DEFAULT_CONTROLLER','core.controller.page');
define('APP_DB_PREFIX','cerb');
define('APP_PATH',dirname(__FILE__));
define('APP_STORAGE_PATH',APP_PATH . '/storage');
define('APP_TEMP_PATH',APP_STORAGE_PATH . '/tmp');
define('DEVBLOCKS_PATH',APP_PATH . '/libs/devblocks/');
define('DEVBLOCKS_REWRITE', file_exists(dirname(__FILE__).'/.htaccess'));
define('DEVELOPMENT_MODE', false);
define('AUTHORIZED_IPS_DEFAULTS', '');
define('ONDEMAND_MODE', false);
require_once(DEVBLOCKS_PATH . 'framework.defaults.php');