CException

Property "CWebApplication.parmas" is not defined.

/home/clearlel/yiiroot/framework/base/CModule.php(106)

094     /**
095      * Getter magic method.
096      * This method is overridden to support accessing application components
097      * like reading module properties.
098      * @param string $name application component or property name
099      * @return mixed the named property value
100      */
101     public function __get($name)
102     {
103         if($this->hasComponent($name))
104             return $this->getComponent($name);
105         else
106             return parent::__get($name);
107     }
108 
109     /**
110      * Checks if a property value is null.
111      * This method overrides the parent implementation by checking
112      * if the named application component is loaded.
113      * @param string $name the property name or the event name
114      * @return boolean whether the property value is null
115      */
116     public function __isset($name)
117     {
118         if($this->hasComponent($name))

Stack Trace

#1
+
 /home/clearlel/protected/views/site/r-faq-master.php(226): CModule->__get("parmas")
221                                                 </a>
222                                             </h4>
223                                         </div>
224                                         <div id="collapseSix2" class="panel-collapse collapse">
225                                             <div class="panel-body">
226                                                 Follow the log in steps and the log in page has a link to reset password. Select the link and you will receive an email to reset your password. If you are still having trouble, you can contact customer support at <a href='mailto:<?php echo Yii::app()->parmas['infoemail']?>'><?php echo Yii::app()->parmas['infoemail']?></a>.
227                                             </div>
228                                         </div>
229                                     </div>
230 
231                                     <div class="panel">
#5
+
 /home/clearlel/protected/controllers/SiteController.php(164): CController->renderPartial("r-faq-master")
159     }
160 
161     public function actionFaq($cat = 'owner') {
162         $this->layout = 'layout_bootstrap_1';
163         $this->pageClass = 'onecol';
164         $this->renderPartial('r-faq-'.$cat);
165     }
166 
167     public function actionSelectstate() {
168         if (isset($_POST['state'])) {
169             $this->redirect("http://www.".$_POST['state'].".com");
#15
+
 /home/clearlel/public_html/index.php(45): CApplication->run()
40 
41 // specify how many levels of call stack should be shown in each log message
42 
43 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3);
44 //Now you can run application
45 $app->run();
2024-03-19 07:32:29 Apache Yii Framework/1.1.10