-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php_example
More file actions
50 lines (40 loc) · 1.68 KB
/
config.php_example
File metadata and controls
50 lines (40 loc) · 1.68 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/**
* The Javaria Project
* Copyright © 2019
* Michel Noel
* Datalight Analytics
* http://www.datalightanalytics.com/
*
* Creative Commons Attribution-ShareAlike 4.0 International Public License
* By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of
* this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this
* Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your
* acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the
* Licensor receives from making the Licensed Material available under these terms and conditions.
*
* File: config.php
* Last Modified: 7/21/19, 5:24 PM
*/
defined('CHART_CONTAINER_MAX_HEIGHT') or define('CHART_CONTAINER_MAX_HEIGHT', '1200');
defined('CHART_CONTAINER_MAX_WIDTH') or define('CHART_CONTAINER_MAX_WIDTH', '1200');
defined('CHART_CONTAINER_MIN_HEIGHT') or define('CHART_CONTAINER_MIN_HEIGHT', '100');
defined('CHART_CONTAINER_MIN_WIDTH') or define('CHART_CONTAINER_MIN_WIDTH', '100');
unset($CFG);
global $CFG;
$CFG = new stdClass();
$CFG->DB_SERVER = '';
$CFG->DB_USERNAME = '';
$CFG->DB_PASSWORD = '';
$CFG->DB_DATABASE = '';
$CFG->DB_PORT = '';
$CFG->path = '/var/www/html';
$CFG->main_server = 'local.charts.test';
$CFG->prefix = 'charts_';
$CFG->adminid = 1;
$CFG->logging = 2;
$CFG->logfilepath = '/var/log/jd/';
$CFG->logfileprefix = 'js-logfile';
#$CFG->https = true;
$CFG->version = '1.0';
$CFG->rev = '0';