Error con proyecto

Saludos,

He subido mi proyecto mi hosting y obtengo lo siguiente:


Warning: require_once(/home/abr4xas/public_html/v1/../yii/framework/yii.php) [function.require-once]: failed to open stream: No such file or directory in /home/abr4xas/public_html/v1/index.php on line 12


Fatal error: require_once() [function.require]: Failed opening required '/home/abr4xas/public_html/v1/../yii/framework/yii.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/abr4xas/public_html/v1/index.php on line 12

Esto a que se debe? Como he de solucionarlo? Muchas gracias. :D

SOLUCIONADO:

Lo hice de la siguiente forma, no se si es la correcta:


<?php


// change the following paths if necessary

$yii=dirname(__FILE__).'/framework/yii.php';

$config=dirname(__FILE__).'/protected/config/main.php';


// 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($config)->run();

Cordial Saludo,

Según el código, indica que el directorio de yii está en el mismo directorio del proyecto… si esto no es así, entonce se debe ajustar la ruta de acceso en la variable $yii.

Saludos.