Размер файла: 993B
- <?php
- /**
- * @name SHCMS Engine
- * @copyright Shamsik © 2012
- * Данный код защищен авторскими правами
- * http://shcms.ru
- */
-
- ini_set('magic_quotes_gpc', 0);
- ini_set('magic_quotes_runtime', 0);
-
- if (ini_get('display_errors') != 1) {
- ini_set('display_errors', 1);
- }
- ini_set('session.cache_expire', SESSION_TIME_SHCMS);
-
- // игнорировать повторяющиеся ошибки
- ini_set('ignore_repeated_errors', true);
-
-
- if (!file_exists(H.'system/inc/config.php'))
- {
- header("Location: /install/");
- exit;
- }
- // показываем только фатальные ошибки
- ini_set('error_reporting', e_error);
-
- // Установка кодировки для mb_string
- if (function_exists('mb_internal_encoding')) { mb_internal_encoding('UTF-8'); }
-
- //Установка кодировки для iconv
- if(function_exists('Iconv')) { iconv_set_encoding('internal_encoding','UTF-8'); }
-
-
-
-
- ?>