CException

AdvertController는 요청한 view "landing/blog"를 찾을 수 없습니다.

/var/www/frameworks/yii-1.1.19/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

#0
+
 /var/www/dbtong.co.kr/frontend/protected/views/advert/landing.php(3): CController->renderPartial("landing/blog", array("ad_id" => null, "ad_uid" => null, "site_url" => "dbtong", "view" => "blog"))
1 <?php
2 
3 echo $this->renderPartial("landing/{$view}", compact('ad_id', 'ad_uid', 'site_url', 'view'));
#5
+
 /var/www/dbtong.co.kr/frontend/protected/controllers/AdvertController.php(83): CController->render("landing", array("ad_id" => null, "ad_uid" => null, "site_url" => "dbtong", "view" => "blog"))
78         if ($view == 'abelmo_2016') {
79             $this->layout = 'main';
80         }else if($view == 'mar_top'){
81             $this->layout = 'empty';
82         }
83         return $this->render('landing', compact('ad_id', 'ad_uid', 'site_url', 'view'));
84     }
85 
86     /**
87      * Training-banner-support page advert
88      *
#20
+
 /var/www/dbtong.co.kr/frontend/index.php(11): CApplication->run()
06 defined('YII_DEBUG') or define('YII_DEBUG',true);
07 // specify how many levels of call stack should be shown in each log message
08 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
09 
10 require_once($yii);
11 Yii::createWebApplication($config)->run();
2024-03-19 12:27:53 Apache/2.4.18 (Ubuntu) Yii Framework/1.1.19