Yii Installation In Ftp

hello.

I have problem, i can’t install yii in ftp. In XAMP run great, but in my ftp server i have error:


Warning: require(/home/domian/domains/domian.com/public_html/task/framework/YiiBase.php) [function.require]: failed to open stream: No such file or directory in /home/domian/domains/domian.com/public_html/task/framework/yii.php on line 13


Fatal error: require() [function.require]: Failed opening required '/home/domian/domains/domian.com/public_html/task/framework/YiiBase.php' (include_path='.:/usr/local/php5/lib/php') in /home/domian/domains/domian.com/public_html/task/framework/yii.php on line 13

YiiBase.php is in folder /home/domian/domains/domian.com/public_html/task/framework/YiiBase.php.

How i can do it?

Where are you hosted?

In company server. I go to "http://hostname/path/to/yii/requirements/index.php" and all is correct.

Confirmed that you have put framework folder on server successfully.And there is no file left to upload on server which is related to framework. And in your application open index.php and check




// change the following paths if necessary

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

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


// remove the following line when in production mode

defined('YII_DEBUG') or define('YII_DEBUG',true);


require_once($yii);

Yii::createWebApplication($config)->run();



these settings are pointing correctly or not.

Problem is solved. TCommander change name "YiiBase.php" to "yiibase.php".