CException

A ProductsController vezérlő nem találta a(z) "otherinfo" Nézetet.

/var/www/vhosts/mobell.hu/httpdocs/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
+
 /var/www/vhosts/mobell.hu/httpdocs/protected/controllers/ProductsController.php(1585): CController->render("otherinfo", array("model" => Products))
1580     public function actionOtherinfo($id) {
1581 
1582         $model = Products::model()->findByPk($id);
1583 
1584         $this->render('otherinfo', array(
1585             'model' => $model,
1586         ));
1587     }
1588 
1589     public function actionIndex()
1590     {
#16
+
 /var/www/vhosts/mobell.hu/httpdocs/index.php(17): CApplication->run()
12 defined('YII_DEBUG') or define('YII_DEBUG',true);
13 // specify how many levels of call stack should be shown in each log message
14 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
15 
16 require_once($yii);
17 Yii::createWebApplication($config)->run();
18 
2024-03-19 05:34:21 Apache Yii Framework/1.1.23