/var/www/vhosts/znuweb/framework/base/CComponent.php(266)
254 public function __call($name,$parameters) 255 { 256 if($this->_m!==null) 257 { 258 foreach($this->_m as $object) 259 { 260 if($object->getEnabled() && method_exists($object,$name)) 261 return call_user_func_array(array($object,$name),$parameters); 262 } 263 } 264 if(class_exists('Closure', false) && $this->canGetProperty($name) && $this->$name instanceof Closure) 265 return call_user_func_array($this->$name, $parameters); 266 throw new CException(Yii::t('yii','{class} and its behaviors do not have a method or closure named "{name}".', 267 array('{class}'=>get_class($this), '{name}'=>$name))); 268 } 269 270 /** 271 * Returns the named behavior object. 272 * The name 'asa' stands for 'as a'. 273 * @param string $behavior the behavior name 274 * @return IBehavior the behavior object, or null if the behavior does not exist 275 */ 276 public function asa($behavior) 277 { 278 return isset($this->_m[$behavior]) ? $this->_m[$behavior] : null;
#0 |
+
–
/var/www/vhosts/znuweb/protected/controllers/PgController.php(83): CComponent->__call("loadJournalName", array()) 78 $jrnl = 'news'; // As of PHP 5.3.0 79 $qjrnl = Journals::model()->findByAttributes(array('url' => $jrnl)); 80 */ 81 82 83 $jrnl=$this->loadJournalName(); 84 85 86 $qjrnl=$this->qjrnl; 87 $qjrnltm=$this->qjrnltm; 88 $id2=$this->id2; |
#1 |
+
–
/var/www/vhosts/znuweb/protected/controllers/PgController.php(83): PgController->loadJournalName() 78 $jrnl = 'news'; // As of PHP 5.3.0 79 $qjrnl = Journals::model()->findByAttributes(array('url' => $jrnl)); 80 */ 81 82 83 $jrnl=$this->loadJournalName(); 84 85 86 $qjrnl=$this->qjrnl; 87 $qjrnltm=$this->qjrnltm; 88 $id2=$this->id2; |
#2 |
unknown(0): PgController->actionView("22844", null, "fa")
|
#3 |
+
–
/var/www/vhosts/znuweb/framework/web/actions/CAction.php(108): ReflectionMethod->invokeArgs(PgController, array("22844", null, "fa")) 103 elseif($param->isDefaultValueAvailable()) 104 $ps[]=$param->getDefaultValue(); 105 else 106 return false; 107 } 108 $method->invokeArgs($object,$ps); 109 return true; 110 } 111 } |
#4 |
+
–
/var/www/vhosts/znuweb/framework/web/actions/CInlineAction.php(47): CAction->runWithParamsInternal(PgController, ReflectionMethod, array("id" => "22844")) 42 { 43 $methodName='action'.$this->getId(); 44 $controller=$this->getController(); 45 $method=new ReflectionMethod($controller, $methodName); 46 if($method->getNumberOfParameters()>0) 47 return $this->runWithParamsInternal($controller, $method, $params); 48 else 49 return $controller->$methodName(); 50 } 51 52 } |
#5 |
+
–
/var/www/vhosts/znuweb/framework/web/CController.php(351): CInlineAction->runWithParams(array("id" => "22844")) 346 { 347 $priorAction=$this->_action; 348 $this->_action=$action; 349 if($this->beforeAction($action)) 350 { 351 if($action->runWithParams($this->getActionParams())===false) 352 $this->invalidActionParams($action); 353 else 354 $this->afterAction($action); 355 } 356 $this->_action=$priorAction; |
#6 |
+
–
/var/www/vhosts/znuweb/framework/web/filters/CFilterChain.php(133): CController->runAction(CInlineAction) 128 $filter=$this->itemAt($this->filterIndex++); 129 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 130 $filter->filter($this); 131 } 132 else 133 $this->controller->runAction($this->action); 134 } 135 } |
#7 |
+
–
/var/www/vhosts/znuweb/protected/controllers/PgController.php(46): CFilterChain->run() 41 } 42 } 43 Yii::app()->language = Yii::app()->request->cookies['lang']->value; 44 45 46 $filterChain->run(); 47 } 48 49 public function accessRules() 50 { 51 return array( |
#8 |
+
–
/var/www/vhosts/znuweb/framework/web/filters/CInlineFilter.php(58): PgController->filterSetLanguage(CFilterChain) 53 * @param CFilterChain $filterChain the filter chain that the filter is on. 54 */ 55 public function filter($filterChain) 56 { 57 $method='filter'.$this->name; 58 $filterChain->controller->$method($filterChain); 59 } 60 } |
#9 |
+
–
/var/www/vhosts/znuweb/framework/web/filters/CFilterChain.php(130): CInlineFilter->filter(CFilterChain) 125 { 126 if($this->offsetExists($this->filterIndex)) 127 { 128 $filter=$this->itemAt($this->filterIndex++); 129 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 130 $filter->filter($this); 131 } 132 else 133 $this->controller->runAction($this->action); 134 } 135 } |
#10 |
+
–
/var/www/vhosts/znuweb/framework/web/CController.php(334): CFilterChain->run() 329 $this->runAction($action); 330 else 331 { 332 $priorAction=$this->_action; 333 $this->_action=$action; 334 CFilterChain::create($this,$action,$filters)->run(); 335 $this->_action=$priorAction; 336 } 337 } 338 339 /** |
#11 |
+
–
/var/www/vhosts/znuweb/framework/web/CController.php(308): CController->runActionWithFilters(CInlineAction, array("setLanguage")) 303 { 304 if(($parent=$this->getModule())===null) 305 $parent=Yii::app(); 306 if($parent->beforeControllerAction($this,$action)) 307 { 308 $this->runActionWithFilters($action,$this->filters()); 309 $parent->afterControllerAction($this,$action); 310 } 311 } 312 else 313 $this->missingAction($actionID); |
#12 |
+
–
/var/www/vhosts/znuweb/framework/web/CWebApplication.php(282): CController->run("view") 277 { 278 list($controller,$actionID)=$ca; 279 $oldController=$this->_controller; 280 $this->_controller=$controller; 281 $controller->init(); 282 $controller->run($actionID); 283 $this->_controller=$oldController; 284 } 285 else 286 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 287 array('{route}'=>$route===''?$this->defaultController:$route))); |
#13 |
+
–
/var/www/vhosts/znuweb/framework/web/CWebApplication.php(141): CWebApplication->runController("pg/view/id/22844") 136 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 137 $_GET[$name]=$value; 138 } 139 else 140 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 141 $this->runController($route); 142 } 143 144 /** 145 * Registers the core application components. 146 * This method overrides the parent implementation by registering additional core components. |
#14 |
+
–
/var/www/vhosts/znuweb/framework/base/CApplication.php(180): CWebApplication->processRequest() 175 public function run() 176 { 177 if($this->hasEventHandler('onBeginRequest')) 178 $this->onBeginRequest(new CEvent($this)); 179 register_shutdown_function(array($this,'end'),0,false); 180 $this->processRequest(); 181 if($this->hasEventHandler('onEndRequest')) 182 $this->onEndRequest(new CEvent($this)); 183 } 184 185 /** |
#15 |
+
–
/var/www/vhosts/znuweb/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(); |