CException

StoreController cannot find the requested view "/front/banner-receipt".

/var/www/weedmenu/yiiframework/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

#0
+
 /var/www/weedmenu/protected/views/store/signup.php(4): CController->renderPartial()
1 <?php
2 $this->renderPartial('/front/banner-receipt',array(
3    'h1'=>t("Login & Signup"),
4    'sub_text'=>t("sign up to start ordering")
5 ));
6 
7 echo CHtml::hiddenField('mobile_country_code',Yii::app()->functions->getAdminCountrySet(true));
8 ?>
9 
#5
+
 /var/www/weedmenu/protected/controllers/StoreController.php(271): CController->render()
266            'terms_customer'=>getOptionA('website_terms_customer'),
267            'terms_customer_url'=>Yii::app()->functions->prettyLink(getOptionA('website_terms_customer_url')),
268            'fb_flag'=>$fb,
269            'google_login_enabled'=>getOptionA('google_login_enabled'),
270            'captcha_customer_login'=>getOptionA('captcha_customer_login'),
271            'captcha_customer_signup'=>getOptionA('captcha_customer_signup')
272         ));
273     }
274 
275     public function actionSignin()
276     {
#13
+
 /var/www/weedmenu/index.php(58): CApplication->run()
53 // include Yii bootstrap file
54 require_once(dirname(__FILE__).'/yiiframework/yii.php');
55 $config=dirname(__FILE__).'/protected/config/main.php';
56 
57 // create a Web application instance and run
58 Yii::createWebApplication($config)->run();
2024-03-28 23:10:33 Apache/2.4.18 (Ubuntu) Yii Framework/1.1.17