2016-10-06 15:57:01 +00:00
< ? php
2020-12-13 12:43:03 +00:00
2016-10-06 15:57:01 +00:00
/**
2021-01-11 18:41:20 +00:00
* ConLite setup bootstrap file
2020-09-02 08:10:13 +00:00
*
* @ package ConLite
* @ subpackage Setup
2021-01-11 18:41:20 +00:00
* @ version 1.0 . 0
* @ author Ortwin Pinke < oldperl @ ortwinpinke . de >
* @ author Murat Purc < murat @ purc . de >
* @ copyright ( c ) 2020 , ConLite . org
* @ license https :// www . gnu . org / licenses / gpl - 3.0 . de . html GNU General Public License 3
2020-09-02 08:10:13 +00:00
* @ link https :// conlite . org ConLite Portal
2021-01-11 18:41:20 +00:00
* @ since file available since contenido release <= 4.8 . 15
*
2016-10-06 15:57:01 +00:00
*/
if ( ! defined ( 'CON_FRAMEWORK' )) {
die ( 'Illegal call' );
}
define ( 'CON_BE_PATH' , '../conlite/' );
2021-01-11 18:41:20 +00:00
session_start ();
require_once 'lib/defines.php' ;
2023-05-30 08:51:44 +00:00
/*
* SetEnv CL_VERSION
*/
if ( ! defined ( 'CL_VERSION' )) {
define ( 'CL_VERSION' , C_SETUP_VERSION );
}
2020-09-02 08:10:13 +00:00
2016-10-06 15:57:01 +00:00
// uncomment this lines during development if needed
2018-07-22 16:59:22 +00:00
error_reporting ( E_ALL ^ E_NOTICE );
2016-10-06 15:57:01 +00:00
ini_set ( " display_errors " , true );
ini_set ( " log_errors " , true );
ini_set ( " error_log " , " ../data/logs/setup_errorlog.txt " );
header ( 'Content-Type: text/html; charset=UTF-8' );
2019-07-07 18:14:22 +00:00
// Check php version
2021-12-16 13:32:07 +00:00
if ( version_compare ( PHP_VERSION , C_SETUP_MIN_PHP_VERSION , '<' )) {
2020-12-13 12:43:03 +00:00
die ( " You need PHP >= " . C_SETUP_MIN_PHP_VERSION . " to install ConLite " . C_SETUP_VERSION . " . Sorry, even the setup doesn't work otherwise. Your version: " . PHP_VERSION . " \n " );
2021-12-16 13:32:07 +00:00
} else if ( version_compare ( PHP_VERSION , C_SETUP_MAX_PHP_VERSION , '>=' )) {
die ( " You need PHP < " . C_SETUP_MAX_PHP_VERSION . " to install ConLite " . C_SETUP_VERSION . " . Sorry, even the setup doesn't work otherwise. Your version: " . PHP_VERSION . " \n " );
2016-10-06 15:57:01 +00:00
}
/*
* Do not edit this value !
*
* If you want to set a different enviroment value please define it in your . htaccess file
* or in the server configuration .
*
2020-12-13 12:43:03 +00:00
* SetEnv CONLITE_ENVIRONMENT development
2016-10-06 15:57:01 +00:00
*/
if ( ! defined ( 'CL_ENVIRONMENT' )) {
if ( getenv ( 'CONLITE_ENVIRONMENT' )) {
$sEnvironment = getenv ( 'CONLITE_ENVIRONMENT' );
} else if ( getenv ( 'CL_ENVIRONMENT' )) {
$sEnvironment = getenv ( 'CL_ENVIRONMENT' );
} else {
// @TODO: provide a possibility to set the environment value via file
$sEnvironment = 'production' ;
}
define ( 'CL_ENVIRONMENT' , $sEnvironment );
}
// include security class and check request variables
include_once ( CON_BE_PATH . 'classes/class.security.php' );
Contenido_Security :: checkRequests ();
/**
* Setup file inclusion
*
* @ param string $filename
* @ return void
*/
function checkAndInclude ( $filename ) {
if ( file_exists ( $filename ) && is_readable ( $filename )) {
2020-12-13 12:43:03 +00:00
require_once ( $filename );
2016-10-06 15:57:01 +00:00
} else {
2020-12-13 12:43:03 +00:00
echo " <pre> " ;
echo " Setup was unable to include neccessary files. The file $filename was not found. Solutions: \n \n " ;
echo " - Make sure that all files are correctly uploaded to the server. \n " ;
echo " - Make sure that include_path is set to '.' (of course, it can contain also other directories). Your include path is: " . ini_get ( " include_path " ) . " \n " ;
echo " </pre> " ;
2016-10-06 15:57:01 +00:00
}
}
// Some basic configuration
global $cfg ;
$cfg [ 'path' ][ 'frontend' ] = CON_FRONTEND_PATH ;
$cfg [ 'path' ][ 'conlite' ] = $cfg [ 'path' ][ 'frontend' ] . '/conlite/' ;
$cfg [ 'path' ][ 'conlite_config' ] = CON_FRONTEND_PATH . '/data/config/' . CL_ENVIRONMENT . '/' ;
2023-06-15 18:44:01 +00:00
$cfg [ 'path' ][ 'conlite_logs' ] = CON_FRONTEND_PATH . '/data/logs/' ;
2016-10-06 15:57:01 +00:00
2020-12-13 12:43:03 +00:00
if ( ! is_dir ( $cfg [ 'path' ][ 'conlite_config' ])) {
die ( " Setup cannot find the config folder \" " . $cfg [ 'path' ][ 'conlite_config' ] . " \" ! Make shure folder exists and is readable. " );
}
2023-05-30 08:51:44 +00:00
checkAndInclude ( $cfg [ 'path' ][ 'conlite_config' ] . 'config.misc.php' );
checkAndInclude ( $cfg [ 'path' ][ 'conlite_config' ] . 'cfg_sql.inc.php' );
2018-07-22 16:59:22 +00:00
2023-07-22 15:44:00 +00:00
include_once dirname ( __DIR__ , 2 ) . '/vendor/autoload.php' ;
2016-10-06 15:57:01 +00:00
// includes
2023-05-30 08:51:44 +00:00
/** @todo use conlite autoload to load needed classes */
2020-12-13 12:43:03 +00:00
checkAndInclude ( $cfg [ 'path' ][ 'frontend' ] . '/pear/HTML/Common2.php' );
2023-05-30 08:51:44 +00:00
checkAndInclude ( $cfg [ 'path' ][ 'conlite' ] . 'classes/con2con/class.registry.php' );
2023-07-22 15:44:00 +00:00
2023-05-30 08:51:44 +00:00
checkAndInclude ( $cfg [ 'path' ][ 'conlite' ] . 'classes/class.genericdb.php' );
2022-11-21 21:08:35 +00:00
checkAndInclude ( $cfg [ 'path' ][ 'conlite' ] . 'classes/cHTML5/class.chtml5.common.php' );
2016-10-06 15:57:01 +00:00
checkAndInclude ( $cfg [ 'path' ][ 'conlite' ] . 'classes/cHTML5/class.chtml.php' );
checkAndInclude ( $cfg [ 'path' ][ 'conlite' ] . 'classes/class.htmlelements.php' );
2017-08-10 13:35:06 +00:00
checkAndInclude ( $cfg [ 'path' ][ 'conlite' ] . 'classes/con2con/class.filehandler.php' );
2023-05-30 08:51:44 +00:00
checkAndInclude ( $cfg [ 'path' ][ 'conlite' ] . 'classes/contenido/class.language.php' );
2017-08-09 20:25:21 +00:00
checkAndInclude ( $cfg [ 'path' ][ 'conlite' ] . 'classes/class.i18n.php' );
2016-10-06 15:57:01 +00:00
checkAndInclude ( $cfg [ 'path' ][ 'conlite' ] . 'includes/functions.i18n.php' );
checkAndInclude ( 'lib/class.setupcontrols.php' );
checkAndInclude ( 'lib/functions.filesystem.php' );
checkAndInclude ( 'lib/functions.environment.php' );
checkAndInclude ( 'lib/functions.safe_mode.php' );
checkAndInclude ( 'lib/functions.mysql.php' );
checkAndInclude ( 'lib/functions.phpinfo.php' );
checkAndInclude ( 'lib/functions.system.php' );
checkAndInclude ( 'lib/functions.libraries.php' );
checkAndInclude ( 'lib/functions.sql.php' );
checkAndInclude ( 'lib/functions.setup.php' );
checkAndInclude ( 'lib/class.template.php' );
2023-05-30 04:28:22 +00:00
checkAndInclude ( 'lib/class.setupmask.php' );