blob: 6b2bfbb49621b684716cc2c3406c727852ed1fad (
plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
<?php
/**
* Elgg configuration library
* Contains functions for managing system configuration
*
* @package Elgg
* @subpackage Core
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd
* @copyright Curverider Ltd 2008
* @link http://elgg.org/
*/
/**
* If certain configuration elements don't exist, autodetect sensible defaults
*
* @uses $CONFIG The main configuration global
*
*/
function set_default_config() {
global $CONFIG;
if (empty($CONFIG->path))
$CONFIG->path = str_replace("\\","/",dirname(dirname(dirname(__FILE__)))) . "/";
if (empty($CONFIG->viewpath))
$CONFIG->viewpath = $CONFIG->path . "views/";
if (empty($CONFIG->pluginspath))
$CONFIG->pluginspath = $CONFIG->path . "mod/";
if (empty($CONFIG->wwwroot)) {
$CONFIG->wwwroot = "http://" . $_SERVER['SERVER_NAME'];
/*if (strripos($_SERVER['DOCUMENT_ROOT'],"/") < (strlen($_SERVER['DOCUMENT_ROOT']) - 1)) {
$CONFIG->wwwroot .= "/";
}*/
$request = $_SERVER['REQUEST_URI'];
if (strripos($request,"/") < (strlen($request) - 1)) {
// addressing a file directly, not a dir
$request = substr($request, 0, strripos($request,"/")+1);
}
$CONFIG->wwwroot .= $request;
//$CONFIG->wwwroot .= str_replace($_SERVER['DOCUMENT_ROOT'],"",$CONFIG->path);
}
if (empty($CONFIG->url))
$CONFIG->url = $CONFIG->wwwroot;
if (empty($CONFIG->sitename))
$CONFIG->sitename = "New Elgg site";
if (empty($CONFIG->debug))
$CONFIG->debug = false;
}
?>
|