CException

DownController 无法找到请求的视图 "view".

/www/wwwroot/101ebuy.net/framework/web/CController.php(878)

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

Stack Trace

#1
+
 /www/wwwroot/101ebuy.net/protected/controllers/DownController.php(92): CController->render("view", array("model" => Download))
87         
88         $this->cate = $cate;
89         $data = array(
90             'model' => $model,
91         );
92         $this->render('view', $data);
93     }
94     public function actionSearch() {
95         $key = CHtml::encode($_POST['q']);
96         $criteria = new CDbCriteria(array(
97             'order' => 'id desc',
#9
+
 /www/wwwroot/101ebuy.net/common.php(13): CApplication->run()
08 // specify how many levels of call stack should be shown in each log message
09 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 5);
10 require_once($yii);
11 $app = Yii::createWebApplication($config);
12 require_once($globals);
13 $app->run();
#10
+
 /www/wwwroot/101ebuy.net/index.php(29): require_once("/www/wwwroot/101ebuy.net/common.php")
24 //    $config['viewPath'] = 'views_m2';
25 //} else {
26 //    define('IS_MOBILE', false);
27 //}
28 $globals = __DIR__ . '/protected/globals_2018.php';
29 require_once('./common.php');
2024-03-28 21:28:36 nginx/1.14.1 Yii Framework/1.1.16-dev