CException

ProposalController cannot find the requested view "webform".

/home3/searchdo/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/CController.php(879)

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

Stack Trace

#1
+
 /home3/searchdo/public_html/protected/controllers/ProposalController.php(135): CController->render("webform", array("model" => Webform))
130              $model->setAttribute('dop', date("Y-m-d h:i:s"));
131             if ($model->save())
132                 $this->redirect(array('websubmited'));
133         }
134 
135         $this->render('webform', array(
136             'model' => $model,
137         ));
138     }
139     public function actionPartnership() {
140         $model = new Webform;
#14
+
 /home3/searchdo/public_html/index.php(11): CApplication->run()
06 $yii = dirname(__FILE__) . '/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/yii.php';
07         $config = dirname(__FILE__) . '/protected/config/main.php';
08         defined('YII_DEBUG') or define('YII_DEBUG', TRUE);
09         defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 0);
10         require_once($yii);
11         Yii::createWebApplication($config)->run(); 
12         ?>
2025-04-25 08:39:24 Apache Yii Framework/1.1.10