CException

SiteController cannot find the requested view "apply_job".

/home/croonus/public_html/croonus/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/croonus/public_html/croonus/protected/controllers/SiteController.php(265): CController->render("apply_job", array("data" => array()))
260 
261     /** Apply Job page */
262     public function actionApplyJob($id) {
263         $this->page_title = 'Apply job | ' . $this->site_title;
264         $data             = array();
265         $this->render('apply_job', array('data' => $data));
266     }
267 
268     /** Products Explore page */
269     public function actionProductsExplore($id) {
270         $this->page_title = 'Products Explore | ' . $this->site_title;
#11
+
 /home/croonus/public_html/index.php(17): CApplication->run()
12 // change the following paths if necessary
13         $yii    = dirname(__FILE__) . '/croonus/yii/framework/yii.php';
14         $config = dirname(__FILE__) . '/croonus/protected/config/main.php';
15 
16         require_once($yii);
17         Yii::createWebApplication($config)->run();
18 
19         break;
20     default :
21         ?>
22         <div class="col-md-12">
2024-03-28 12:10:27 LiteSpeed Yii Framework/1.1.14