CException

DefaultController non ha potuto trovare la vista "pages/www.prosveta.it" richiesta.

/membri/cmif/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
+
 /membri/cmif/public/protected/components/Controller.php(44): CController->render("pages/www.prosveta.it", array("model" => null, "buttonBar" => ""), false)
39     /**
40      * Overrides the render function in order to set the $data and $return 
41      * parameter optional
42      */
43     public function render($view, $data = null, $return = false) {
44     return parent::render($view, $data, $return);
45     }
46   
47      /**
48      * Registers meta tags, link tags, css files, scripts and what ever else
49      */
#2
+
 /membri/cmif/public/protected/controllers/group/DefaultController.php(16): Controller->render("pages/www.prosveta.it", array("model" => null, "buttonBar" => ""))
11     {
12         $model = $this->getModel($view);
13         $this->render('pages/' . $view, array(
14           'model' => $model,
15           'buttonBar' => $this->getButtonBar($model),
16         ));
17     }
18 
19     /**
20      */
21     public function actionList()
#10
+
 /membri/cmif/public/protected/extensions/web/WebApplication.php(26): CWebApplication->runController("group/default/page/view/www.prosveta.it")
21     public function runController($route)
22     {
23         // Denies access to old browsers
24         if(Browser::isIE() && Browser::isLtIE9())
25           header("location: //cmif/public/index-ie8.php");
26         else parent::runController($route);
27     }
28 }
29 ?>
2024-03-29 03:39:30 Apache Yii Framework/1.1.14