CHttpException

The requested page does not exist.

/home/lohaheloha/public_html/mwpbnp.com/mwpbnp/src/protected/controllers/SiteController.php(110)

098 
099     public function actionRss() {
100         $this->layout = '//layouts/column2';
101         $model = Products::model()->findAll(array('condition' => 'published=1', 'order' => 'name ASC'));
102         $this->render('rss', array('model' => $model));
103     }
104 
105     public function actionWidgetPrice($slug) {
106         $criteria = new CDbCriteria;
107         $criteria->compare('slug', $slug, true);
108         $model = Products::model()->find($criteria);
109         if ($model === null)
110             throw new CHttpException(404, 'The requested page does not exist.');
111         $this->renderPartial('table', array('data' => $model), false, true);
112     }
113     public function actionThankyou(){
114         $quote_id=Yii::app()->request->getParam('orderRefNumber');
115         if(is_numeric($quote_id)){
116             $model = Quotes::model()->find(array('condition'=>"quote_id=$quote_id"));
117             $model->transection_id = Yii::app()->request->getParam('transactionNumber'); 
118             if(Yii::app()->request->getParam('success')=='true')
119             $model->status='Payment verified';
120             $model->save(false);
121             $this->redirect('/member');
122             Yii::app()->end();

Stack Trace

#9
+
 /home/lohaheloha/public_html/mwpbnp.com/mwpbnp/src/index.php(65): CApplication->run()
60 
61     }
62     $maincon->active = false;
63 }
64 
65 Yii::createWebApplication ( $config )->run ();
2024-03-29 17:35:55 Apache Yii Framework/1.1.25