Начинаю изучать Yii.
Создаю первое приложение. Но при попытке выполнить yiic shell выдёт ошибку
Error: index.php does not exist or is not an entry script file.
Файл индекс в примере по которуму учусь:
<?php
$yii=’/wwwroot/framework/yii.php’;
$config=dirname(FILE).’/protected/config/main.php’;
// удалить следующую строку в режиме production
defined(‘YII_DEBUG’) or define(‘YII_DEBUG’,true);
require_once($yii);
Yii::createWebApplication($config)->run();
Мой файл индекс:
<?php
// change the following paths if necessary
$yii=dirname(FILE).’/../yii/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);
defined(‘YII_TRACE_LEVEL’) or define(‘YII_TRACE_LEVEL’,3);
require_once($yii);
Yii::createWebApplication($config)->run();
Собственно - в чём у меня проблема?)