CException

SiteController cannot find the requested view "error".

/var/www/vhosts/technik-center-alpen.de/httpdocs/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
+
 /var/www/vhosts/technik-center-alpen.de/httpdocs/protected/controllers/SiteController.php(72): CController->render("error")
67                 $this->render($layout, array(
68                     'model' => $model,
69                 ));
70             }
71         } else {
72             $this->render('error');
73         }
74         //   echo '<img src="http://stats.rossimedia.de/piwik/piwik.php?idsite=' . Yii::app()->params->siteID . '&rec=1" style="border:0" alt="" />';
75     }
76 
77     public function actionContent($contentID)
#11
+
 /var/www/vhosts/technik-center-alpen.de/httpdocs/index.php(17): CApplication->run()
12 error_reporting(E_ALL);
13 ini_set('display_errors', TRUE);
14 ini_set('display_startup_errors', TRUE);
15 */
16 $app = Yii::createWebApplication($config);
17 $app->run();
2024-03-28 11:47:03 Apache Yii Framework/1.1.14