CException

SiteController cannot find the requested view "index".

/home1/mohammedagl6/oprasolutions.com/yii/framework/web/CController.php(881)

869     {
870         if(($viewFile=$this->getViewFile($view))!==false)
871         {
872             $output=$this->renderFile($viewFile,$data,true);
873             if($processOutput)
874                 $output=$this->processOutput($output);
875             if($return)
876                 return $output;
877             else
878                 echo $output;
879         }
880         else
881             throw new CException(Yii::t('yii','{controller} cannot find the requested view "{view}".',
882                 array('{controller}'=>get_class($this), '{view}'=>$view)));
883     }
884 
885     /**
886      * Renders a named clip with the supplied parameters.
887      * This is similar to directly accessing the {@link clips} property.
888      * The main difference is that it can take an array of named parameters
889      * which will replace the corresponding placeholders in the clip.
890      * @param string $name the name of the clip
891      * @param array $params an array of named parameters (name=>value) that should replace
892      * their corresponding placeholders in the clip
893      * @param boolean $return whether to return the clip content or echo it.

Stack Trace

#1
+
 /home1/mohammedagl6/oprasolutions.com/protected/controllers/SiteController.php(48): CController->render("index")
43           $this->layout='mainfirstar';
44           break;
45           default:
46           $this->layout='mainfirst';
47           }
48         $this->render('index');
49     }
50 
51     /**
52      * This is the action to handle external exceptions.
53      */
#9
+
 /home1/mohammedagl6/oprasolutions.com/index.php(14): CApplication->run()
09 defined('YII_DEBUG') or define('YII_DEBUG',true);
10 // specify how many levels of call stack should be shown in each log message
11 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
12 
13 require_once($yii);
14 Yii::createWebApplication($config)->run();
2026-08-01 23:00:39 Apache Yii Framework/1.1.28