CException

Properti "CWebUser.group_id" tidak didefinisikan.

/srv/www/public_html/YII122/framework/web/auth/CWebUser.php(146)

134 
135     /**
136      * PHP magic method.
137      * This method is overridden so that persistent states can be accessed like properties.
138      * @param string $name property name
139      * @return mixed property value
140      */
141     public function __get($name)
142     {
143         if($this->hasState($name))
144             return $this->getState($name);
145         else
146             return parent::__get($name);
147     }
148 
149     /**
150      * PHP magic method.
151      * This method is overridden so that persistent states can be set like properties.
152      * @param string $name property name
153      * @param mixed $value property value
154      * @throws CException
155      */
156     public function __set($name,$value)
157     {
158         if($this->hasState($name))

Stack Trace

#1
+
 /srv/www/public_html/Web24Production/themes/sanaroo_new/views/layouts/admin/main.php(205): CWebUser->__get("group_id")
200                             margin-bottom: 100px; 
201                             width: 15%;
202                             padding-left : 15px;">
203                     <?php 
204 
205                         $group = Yii::app()->user->group_id;
206                         $groupauths = GroupAuth::model()->findAllByAttributes(array(
207                             'group_id' => $group,
208                         ));
209                         
210                         // baru diterapkan di penghargaan dan location, dapat di terapkan di menu lain
#9
+
 /srv/www/public_html/Web24Production/themes/sanaroo_new/views/layouts/admin/column1.php(7): CBaseController->endContent()
2 <?php $this->beginContent('//layouts/admin/main'); ?>
3 <div class="content tencol last" style="">
4 <?php $this->widget('ext.vlo.flash.VFlash'); ?>   
5  <?php echo $content; ?>
6 </div>
7 <?php $this->endContent(); ?>
#13
+
 /srv/www/public_html/Web24Production/protected/controllers/WebformController.php(236): CController->render("index", array("dataProvider" => CActiveDataProvider))
231      */
232     public function actionIndex() {
233         $dataProvider = new CActiveDataProvider('Webform');
234         $this->render('index', array(
235             'dataProvider' => $dataProvider,
236         ));
237     }
238 
239     /**
240      * Manages all models.
241      */
2024-03-29 22:53:21 nginx/1.18.0 Yii Framework/1.1.22