2010-10-29 13:19:51 +00:00
|
|
|
<?php
|
|
|
|
// MyDMS. Document Management System
|
|
|
|
// Copyright (C) 2002-2005 Markus Westphal
|
|
|
|
// Copyright (C) 2006-2008 Malcolm Cowe
|
2016-04-07 06:31:40 +00:00
|
|
|
// Copyright (C) 2010 Matteo Lucarelli
|
2010-10-29 13:19:51 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
2011-03-14 16:35:41 +00:00
|
|
|
|
2011-07-21 06:53:35 +00:00
|
|
|
require_once('inc.ClassSettings.php');
|
2013-10-30 08:57:12 +00:00
|
|
|
if(defined("SEEDDMS_CONFIG_FILE"))
|
|
|
|
$settings = new Settings(SEEDDMS_CONFIG_FILE);
|
2020-09-30 09:02:58 +00:00
|
|
|
elseif(getenv("SEEDDMS_CONFIG_FILE"))
|
|
|
|
$settings = new Settings(getenv("SEEDDMS_CONFIG_FILE"));
|
2013-10-30 08:57:12 +00:00
|
|
|
else
|
|
|
|
$settings = new Settings();
|
2021-08-04 12:19:11 +00:00
|
|
|
if(!defined("SEEDDMS_INSTALL") && file_exists($settings->_configFileDir."/ENABLE_INSTALL_TOOL")) {
|
2013-02-14 11:10:53 +00:00
|
|
|
die("SeedDMS won't run unless your remove the file ENABLE_INSTALL_TOOL from your configuration directory.");
|
2011-07-27 06:22:26 +00:00
|
|
|
}
|
2011-03-14 16:35:41 +00:00
|
|
|
|
2021-04-06 09:15:47 +00:00
|
|
|
/* Set an encryption key if is not set */
|
|
|
|
if(!trim($settings->_encryptionKey)) {
|
|
|
|
$settings->_encryptionKey = md5(uniqid());
|
|
|
|
$settings->save();
|
|
|
|
}
|
|
|
|
|
2021-09-27 13:56:50 +00:00
|
|
|
/* Set some directories if not set in the configuration file */
|
|
|
|
$__basedir = dirname(dirname(__DIR__));
|
|
|
|
$__datadir = dirname(dirname(__DIR__))."/data";;
|
|
|
|
if(empty($settings->_rootDir)) {
|
2021-09-30 05:52:47 +00:00
|
|
|
$settings->_rootDir = $__basedir."/www/";
|
2021-09-27 13:56:50 +00:00
|
|
|
}
|
|
|
|
if(empty($settings->_contentDir)) {
|
2021-11-27 11:08:32 +00:00
|
|
|
$settings->_contentDir = $__datadir;
|
2021-09-27 13:56:50 +00:00
|
|
|
}
|
|
|
|
if(empty($settings->_cacheDir)) {
|
2021-09-30 05:52:47 +00:00
|
|
|
$settings->_cacheDir = $__datadir."/cache/";
|
2021-09-27 13:56:50 +00:00
|
|
|
}
|
|
|
|
if(empty($settings->_backupDir)) {
|
2021-09-30 05:52:47 +00:00
|
|
|
$settings->_backupDir = $__datadir."/backup/";
|
2021-09-27 13:56:50 +00:00
|
|
|
}
|
|
|
|
if(empty($settings->_luceneDir)) {
|
2021-09-30 05:52:47 +00:00
|
|
|
$settings->_luceneDir = $__datadir."/lucene/";
|
2021-09-27 13:56:50 +00:00
|
|
|
}
|
|
|
|
if(empty($settings->_stagingDir)) {
|
2021-09-30 05:52:47 +00:00
|
|
|
$settings->_stagingDir = $__datadir."/lucene/";
|
2021-09-27 13:56:50 +00:00
|
|
|
}
|
|
|
|
if($settings->_dbDriver == 'sqlite' && empty($settings->_dbDatabase)) {
|
2021-09-30 05:52:47 +00:00
|
|
|
$settings->_dbDatabase = $__datadir."/content.db";
|
2021-09-27 13:56:50 +00:00
|
|
|
}
|
|
|
|
|
2021-07-23 10:08:26 +00:00
|
|
|
ini_set('include_path', $settings->_rootDir.'pear'. PATH_SEPARATOR .ini_get('include_path'));
|
|
|
|
if(!empty($settings->_extraPath)) {
|
2013-02-06 13:49:04 +00:00
|
|
|
ini_set('include_path', $settings->_extraPath. PATH_SEPARATOR .ini_get('include_path'));
|
2021-07-23 10:08:26 +00:00
|
|
|
}
|
2021-07-23 11:39:59 +00:00
|
|
|
/* composer is installed in pear directory, but install tool does not need it */
|
|
|
|
if(!defined("SEEDDMS_INSTALL"))
|
|
|
|
require_once $settings->_rootDir.'../pear/vendor/autoload.php';
|
2018-11-23 20:01:55 +00:00
|
|
|
|
2020-10-15 13:34:15 +00:00
|
|
|
if(isset($settings->_maxExecutionTime)) {
|
|
|
|
if (php_sapi_name() !== "cli") {
|
|
|
|
ini_set('max_execution_time', $settings->_maxExecutionTime);
|
|
|
|
}
|
|
|
|
}
|
2013-04-30 18:00:50 +00:00
|
|
|
|
2021-05-11 19:18:15 +00:00
|
|
|
if (function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc()) {
|
2014-01-08 05:34:15 +00:00
|
|
|
$process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
|
|
|
|
while (list($key, $val) = each($process)) {
|
|
|
|
foreach ($val as $k => $v) {
|
|
|
|
unset($process[$key][$k]);
|
|
|
|
if (is_array($v)) {
|
|
|
|
$process[$key][stripslashes($k)] = $v;
|
|
|
|
$process[] = &$process[$key][stripslashes($k)];
|
|
|
|
} else {
|
|
|
|
$process[$key][stripslashes($k)] = stripslashes($v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
unset($process);
|
|
|
|
}
|
2014-12-08 13:51:26 +00:00
|
|
|
|
|
|
|
/* Add root Dir. Needed because the view classes are included
|
|
|
|
* relative to it.
|
|
|
|
*/
|
|
|
|
ini_set('include_path', $settings->_rootDir. PATH_SEPARATOR .ini_get('include_path'));
|
2021-07-23 10:08:26 +00:00
|
|
|
/* Add root Dir.'../pear'. Needed because the SeedDMS_Core, etc. are included
|
|
|
|
* relative to it.
|
|
|
|
*/
|
|
|
|
ini_set('include_path', $settings->_rootDir.'../pear'. PATH_SEPARATOR .ini_get('include_path'));
|