CException

StreamController cannot find the file for requested view "content_catalog" in ../default or ../default/content_catalog for module stream

/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/article/controllers/StreamController.php(65): ModuleController->getCurView()
60         }
61 
62         if ($mainScenario == 'download') {
63             $viewfile = $this->getCurView('download_catalog');
64         } else {
65             $viewfile = $this->getCurView('content_catalog');
66         }
67 
68         $this->render(
69             $viewfile, 
70             array(
#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-19 12:54:04 nginx/1.18.0 Yii Framework/1.1.29