CException

ProductController cannot find the requested view "detail_list".

/home/carrierco/yii_14/framework/web/CController.php(879)

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

Stack Trace

#1
+
 /home/carrierco/public_html/protected/controllers/ProductController.php(839): CController->render("detail_list", array("data" => PrdProduct, "model" => null, "product" => array(PrdProduct, PrdProduct, PrdProduct), "attributes" => array(PrdProductAttributes), ...))
834         $this->render('detail_list', array(
835             'data' => $data,
836             'model' => $model,
837             'product' => $product,
838             'attributes' => $attributes,
839             'category' => $category,
840         ));
841     }
842 
843     public function actionCheckpart()
844     {
#11
+
 /home/carrierco/public_html/index.php(14): CApplication->run()
09 
10 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
11 error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING);
12 date_default_timezone_set('Asia/Jakarta');
13 require_once($yii);
14 Yii::createWebApplication($config)->run();
15 
16 $end_timeeeee = microtime(TRUE);
17 
18 // echo $end_timeeeee - $start_timeeeee;
19 // echo "<br>";
2024-03-28 19:03:14 Apache Yii Framework/1.1.12