CHttpException

The requested view "UQ.A3SLQ3G1GR@FO3G:FKRGS4@" was not found.

/home/clients/c05aa288f92035b3458b22182e5695f2/web/yii-1.1.22/framework/web/actions/CViewAction.php(112)

100         // start with a word char and have word chars, dots and dashes only
101         if(preg_match('/^\w[\w\.\-]*$/',$viewPath))
102         {
103             $view=strtr($viewPath,'.','/');
104             if(!empty($this->basePath))
105                 $view=$this->basePath.'/'.$view;
106             if($this->getController()->getViewFile($view)!==false)
107             {
108                 $this->view=$view;
109                 return;
110             }
111         }
112         throw new CHttpException(404,Yii::t('yii','The requested view "{name}" was not found.',
113             array('{name}'=>$viewPath)));
114     }
115 
116     /**
117      * Runs the action.
118      * This method displays the view requested by the user.
119      * @throws CHttpException if the view is invalid
120      */
121     public function run()
122     {
123         $this->resolveView($this->getRequestedView());
124         $controller=$this->getController();

Stack Trace

#8
+
 /home/clients/c05aa288f92035b3458b22182e5695f2/web/index.php(14): CApplication->run()
09 defined('YII_DEBUG') or define('YII_DEBUG',true);
10 // specify how many levels of call stack should be shown in each log message
11 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
12 
13 require_once($yii);
14 Yii::createWebApplication($config)->run();
2024-03-29 10:12:10 Apache Yii Framework/1.1.22