Example #1
0
/** @todo This funtion has been deprecated in PHP 5.3.0 - need to adjust in 1.4 ~skenow */
if (get_magic_quotes_runtime()) {
    @set_magic_quotes_runtime(0);
}
// -- Include common functions and constants file
require_once ICMS_ROOT_PATH . "/include/constants.php";
include_once ICMS_INCLUDE_PATH . "/functions.php";
include_once ICMS_INCLUDE_PATH . "/debug_functions.php";
include_once ICMS_INCLUDE_PATH . "/version.php";
if (!isset($xoopsOption)) {
    $xoopsOption = array();
}
// -- Initialize kernel and launch bootstrap
require_once ICMS_LIBRARIES_PATH . "/icms.php";
icms::setup();
icms::boot();
// -- Easiest ML by Gijoe (no longer needed here)
// Disable gzip compression if PHP is run under CLI mode
// To be refactored
if (empty($_SERVER['SERVER_NAME']) || substr(PHP_SAPI, 0, 3) == 'cli') {
    $icmsConfig['gzip_compression'] = 0;
}
if ($icmsConfig['gzip_compression'] == 1 && extension_loaded('zlib') && !ini_get('zlib.output_compression')) {
    if (@ini_get('zlib.output_compression_level') < 0) {
        ini_set('zlib.output_compression_level', 6);
    }
    ob_start('ob_gzhandler');
}
// Include openid common functions if needed
if (defined('ICMS_INCLUDE_OPENID')) {
    require_once ICMS_LIBRARIES_PATH . "/phpopenid/occommon.php";