CrugeException

action_contenido_index

/home/areurmot/public_html/protected/modules/cruge/components/CrugeAccessControlFilter.php(96)

084             // no esta autorizado a la controladora en general.
085             //
086             $this->reportError($controllerItemName);
087         }
088         */
089 
090         $filterChain->run();
091     }
092 
093     private function reportError($itemName)
094     {
095         if (CrugeUtil::config()->allowUserAlways == false) {
096             throw new CrugeException($itemName, 401);
097         }
098     }
099 
100     protected function postFilter($filterChain)
101     {
102     }
103 }
104 
105 ?>

Stack Trace

#0
+
 /home/areurmot/public_html/protected/modules/cruge/components/CrugeAccessControlFilter.php(79): CrugeAccessControlFilter->reportError("action_contenido_index")
74             // si tiene autorizacion para la accion indicada
75 
76         } else {
77             // no esta autorizado
78             //
79             $this->reportError($actionItemName);
80         }
81         /*
82         }
83         else{
84             // no esta autorizado a la controladora en general.
#8
+
 /home/areurmot/public_html/index.php(13): CApplication->run()
08 defined('YII_DEBUG') or define('YII_DEBUG',true);
09 // specify how many levels of call stack should be shown in each log message
10 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
11 
12 require_once($yii);
13 Yii::createWebApplication($config)->run();
2024-03-29 00:49:19 Apache Yii Framework/1.1.22