index.php 466 Bytes
Newer Older
1 2 3
<?php

// change the following paths if necessary
JULIO JARAMILLO's avatar
JULIO JARAMILLO committed
4
$yii=dirname(__FILE__).'/yii/framework/yii.php';
5 6
$config=dirname(__FILE__).'/protected/config/main.php';

JULIO JARAMILLO's avatar
JULIO JARAMILLO committed
7 8


9 10 11 12 13 14 15
// remove the following lines when in production mode
//defined('YII_DEBUG') or define('YII_DEBUG',false);
// 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($config)->run();