CException

SiteController cannot find the requested view "register".

/home/fhcmlof81pck/public_html/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

#1
+
 /home/fhcmlof81pck/public_html/protected/controllers/SiteController.php(270): CController->render("register", array("model" => User))
265         }
266 
267         if (isset($_GET['user']) && $_GET['user'] != '')
268             $model->email = base64_decode(Yii::app()->easycode->safeReadFrom($_GET['user']));
269 
270         $this->render('register', array('model' => $model));
271         //$this->redirect(array('index'));
272         // display the login form
273         //$this->render('index', array('user' => $model));
274     }
275 
#9
+
 /home/fhcmlof81pck/public_html/index.php(33): CApplication->run()
28 defined('YII_DEBUG') or define('YII_DEBUG',true);
29 // specify how many levels of call stack should be shown in each log message
30 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
31 
32 require_once($yii);
33 Yii::createWebApplication($config)->run();
2024-03-28 10:41:04 Apache Yii Framework/1.1.15