I yii beginner, I change the default controller from main.php in config and create new controller as follow,
class HomeController extends CController
{
public function actionIndex()
{
$this->render('newindex');
}
}
newindex view is in site folder in view. But when i run this, its giving error HomeController cannot find the requested view "newindex". Please help me