CException

HomeController cannot find the requested view "index_inactive".

/var/sites/usacreditunions.com/w/yii/yii-1.1.8.r3324/framework/web/CController.php(875)

863     {
864         if(($viewFile=$this->getViewFile($view))!==false)
865         {
866             $output=$this->renderFile($viewFile,$data,true);
867             if($processOutput)
868                 $output=$this->processOutput($output);
869             if($return)
870                 return $output;
871             else
872                 echo $output;
873         }
874         else
875             throw new CException(Yii::t('yii','{controller} cannot find the requested view "{view}".',
876                 array('{controller}'=>get_class($this), '{view}'=>$view)));
877     }
878 
879     /**
880      * Renders a named clip with the supplied parameters.
881      * This is similar to directly accessing the {@link clips} property.
882      * The main difference is that it can take an array of named parameters
883      * which will replace the corresponding placeholders in the clip.
884      * @param string $name the name of the clip
885      * @param array $params an array of named parameters (name=>value) that should replace
886      * their corresponding placeholders in the clip
887      * @param boolean $return whether to return the clip content or echo it.

Stack Trace

#1
+
 /var/sites/usacreditunions.com/w/protected/controllers/cu/HomeController.php(25): CController->render("index_inactive", array())
20 #echo "<pre>";
21 #print_r($cu);
22 //if(!$cu) throw new CHttpException(404);
23 if(!$cu) {
24     $this->render('index_inactive', array(
25     ));
26 }else{
27     $rows = Yii::app()->db->createCommand(
28     "select t.* from chart_data as t where cu_number = " . $cu->cu_number . " order by cycle_date asc")
29     ->queryAll();
30     $data = array();
#11
+
 /var/sites/usacreditunions.com/w/index.php(81): CApplication->run()
76     }
77     
78 }
79 
80 require_once($yii);
81 Yii::createWebApplication($config)->run();
2024-03-19 11:49:34 Apache/2.4.7 (Ubuntu) Yii Framework/1.1.8