Файл: index.php
Строк: 29
<?php
/**
* Fresh Blog - скрипт мобильного блога
*
* @author Replikon
*/
// Определяем константу с путем к корню приложения
define ('APP_ROOT', dirname (__FILE__));
// По рузультатам тестов, использование yiilite дает прирост производительности примерно в 2 раза!
$yii = APP_ROOT . '/framework/yiilite.php';
//$yii = dirname (__FILE__) . '/framework/yii.php';
// Определяем, какую конфигурацию использовать
if (file_exists ('protected/config/install.php')) $config = 'install';
elseif ($_SERVER["REMOTE_ADDR"] == '127.0.0.1') $config = 'localhost';
else $config = 'main';
// remove the following lines when in production mode
defined ('YII_DEBUG') or define ('YII_DEBUG', true);
// specify how many levels of call stack should be shown in each log message
defined ('YII_TRACE_LEVEL') or define ('YII_TRACE_LEVEL', 3);
require_once ($yii);
Yii::createWebApplication ('protected/config/' . $config . '.php')->run ();