Файл: install/system/bootstrap.php
Строк: 16
<?php
define ('ROOT', $_SERVER['DOCUMENT_ROOT'] . '/');
define ('INSTALL', $_SERVER['DOCUMENT_ROOT'] . '/install/');
ob_start ();
session_name('NetsCMS');
session_start ();
ini_set ('display_errors', 1);
ini_set ('display_startup_errors', 1);
ini_set ('error_reporting', E_ALL);
require_once (ROOT . 'system/libraries/smarty/Smarty.class.php');
$smarty = new Smarty;
$smarty->template_dir = INSTALL . 'theme/tpl/';
$smarty->cache_dir = INSTALL . 'theme/tpl/cache/';
$smarty->compile_dir = INSTALL . 'theme/tpl/compile/';
spl_autoload_register(function($file)
{
require_once (INSTALL . 'system/classes/' . $file. '.php');
});