CException

AwardController cannot find the file for requested view "details" in ../default or ../default/details for module award

/home/httpd/vhosts/marketing-boerse.de/20240318-153510/protected/components/ModuleController.php(56)

44      * @param string $view
45      */
46     public function getCurView($view) {
47 
48         $viewDefaultDir = '../default';
49         $viewDefaultPath = $viewDefaultDir . DIRECTORY_SEPARATOR . $view;
50 
51         if (file_exists($this->getViewFile($view)))
52             return $view;
53         elseif (file_exists($this->getViewFile($viewDefaultPath)))
54             return $viewDefaultPath;
55 
56         throw new CException(Yii::t('yii', '{controller} cannot find the file for requested view "{view}" in {path} or {defaultPath} for module {moduleId}', 
57             array(
58                 '{controller}' => get_class($this), 
59                 '{view}' => $view, '{path}' => $viewDefaultDir, 
60                 '{defaultPath}' => $viewDefaultPath,
61                 '{moduleId}' => $this->Id
62                 
63             )));
64 
65         return false;
66     }
67 
68     public function getDirectoryIdLinkHelper($categoryIds, $type = null){

Stack Trace

#0
+
 /home/httpd/vhosts/marketing-boerse.de/20240318-153510/protected/modules/award/controllers/AwardContentController.php(190): ModuleController->getCurView()
185             $viewname .= '_' . $subpage;
186         }
187 
188         $this->twittercard->setAll($model);
189         
190         $viewfile = $this->getCurView($viewname);
191         $this->render($viewfile, array(
192             'model' => $model,
193             'content' => $content,
194             'juryMembers' => $juryMembers,
195             'disciplines' => $disciplines,
#15
+
 /home/httpd/vhosts/marketing-boerse.de/20240318-153510/maboyii/index.php(96): CApplication->run()
091 defined('YII_DEBUG') or define('YII_DEBUG',true);
092 // specify how many levels of call stack should be shown in each log message
093 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
094 
095 require_once($yii);
096 Yii::createWebApplication($config)->run();
097 
098 //*
099   if ((!empty(Yii::app()->params['matomo']['id']))&&($_SERVER['REQUEST_URI'] != '/statistics/increment')) {
100     set_include_path(get_include_path() . PATH_SEPARATOR . '../protected/vendors/matomo-php-client/');
101     require_once('../protected/vendors/matomo-php-client/MatomoTracker.php');
2024-03-28 23:23:21 nginx/1.18.0 Yii Framework/1.1.29