CException

SiteController cannot find the requested view "kurse".

/mnt/web312/e3/65/5195365/htdocs/yii/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

#0
+
 /mnt/web312/e3/65/5195365/htdocs/protected/controllers/SiteController.php(122): CController->renderPartial("kurse", null, true, false)
117         $_layoutFile = $this->getViewFile($view);
118         $mtime = filemtime($_layoutFile);
119         if ($mtime > $this->_youngestMtime)
120             $this->_youngestMtime = $mtime;
121 
122         return parent::renderPartial($view,
123                                $data,
124                                $return,
125                                $processOutput);
126     }
127 
#2
+
 /mnt/web312/e3/65/5195365/htdocs/protected/controllers/SiteController.php(236): CController->render("kurse")
231     /**
232      * Kurse
233      */
234     public function actionKurse()
235     {
236         $this->render('kurse');
237     }
238 
239     /**
240      * Karte und Wege
241      */
#10
+
 /mnt/web312/e3/65/5195365/htdocs/index.php(17): CApplication->run()
12 // defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
13 
14 // add google api to include path
15 require_once(dirname(__FILE__).'/protected/components/autoload.php');
16 require_once($yii);
17 Yii::createWebApplication($config)->run();
2024-03-29 16:59:06 Apache/2.4.58 (Unix) Yii Framework/1.1.14