/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/CHttpRequest.php(887)
875 /** 876 * Redirects the browser to the specified URL. 877 * @param string $url URL to be redirected to. Note that when URL is not 878 * absolute (not starting with "/") it will be relative to current request URL. 879 * @param boolean $terminate whether to terminate the current application 880 * @param integer $statusCode the HTTP status code. Defaults to 302. See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} 881 * for details about HTTP status code. 882 */ 883 public function redirect($url,$terminate=true,$statusCode=302) 884 { 885 if(strpos($url,'/')===0 && strpos($url,'//')!==0) 886 $url=$this->getHostInfo().$url; 887 header('Location: '.$url, true, $statusCode); 888 if($terminate) 889 Yii::app()->end(); 890 } 891 892 /** 893 * Parses an HTTP Accept header, returning an array map with all parts of each entry. 894 * Each array entry consists of a map with the type, subType, baseType and params, an array map of key-value parameters, 895 * obligatorily including a `q` value (i.e. preference ranking) as a double. 896 * For example, an Accept header value of <code>'application/xhtml+xml;q=0.9;level=1'</code> would give an array entry of 897 * <pre> 898 * array( 899 * 'type' => 'application',
#0 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/CHttpRequest.php(887): header("Location: https://tabibibatali.clingroup.net/lang/17", true, 302) 882 */ 883 public function redirect($url,$terminate=true,$statusCode=302) 884 { 885 if(strpos($url,'/')===0 && strpos($url,'//')!==0) 886 $url=$this->getHostInfo().$url; 887 header('Location: '.$url, true, $statusCode); 888 if($terminate) 889 Yii::app()->end(); 890 } 891 892 /** |
#1 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/CController.php(1033): CHttpRequest->redirect("https://tabibibatali.clingroup.net/lang/17", true, 302) 1028 if(is_array($url)) 1029 { 1030 $route=isset($url[0]) ? $url[0] : ''; 1031 $url=$this->createUrl($route,array_splice($url,1)); 1032 } 1033 Yii::app()->getRequest()->redirect($url,$terminate,$statusCode); 1034 } 1035 1036 /** 1037 * Refreshes the current page. 1038 * The effect of this method call is the same as user pressing the |
#2 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/controllers/SiteController.php(156): CController->redirect("/lang/17") 151 * when an action is not explicitly requested by users. 152 * @throws Exception 153 */ 154 public function actionIndex() 155 { 156 $this->redirect(Yii::app()->createUrl('/lang/view', ['id' => 17])); 157 } 158 159 public function actionAdmin() 160 { 161 $this->render('index'); |
#3 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/actions/CInlineAction.php(49): SiteController->actionIndex() 44 $controller=$this->getController(); 45 $method=new ReflectionMethod($controller, $methodName); 46 if($method->getNumberOfParameters()>0) 47 return $this->runWithParamsInternal($controller, $method, $params); 48 49 $controller->$methodName(); 50 return true; 51 } 52 } |
#4 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/CController.php(308): CInlineAction->runWithParams(array()) 303 { 304 $priorAction=$this->_action; 305 $this->_action=$action; 306 if($this->beforeAction($action)) 307 { 308 if($action->runWithParams($this->getActionParams())===false) 309 $this->invalidActionParams($action); 310 else 311 $this->afterAction($action); 312 } 313 $this->_action=$priorAction; |
#5 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/filters/CFilterChain.php(134): CController->runAction(CInlineAction) 129 $filter=$this->itemAt($this->filterIndex++); 130 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 131 $filter->filter($this); 132 } 133 else 134 $this->controller->runAction($this->action); 135 } 136 } |
#6 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/filters/CFilter.php(40): CFilterChain->run() 35 */ 36 public function filter($filterChain) 37 { 38 if($this->preFilter($filterChain)) 39 { 40 $filterChain->run(); 41 $this->postFilter($filterChain); 42 } 43 } 44 45 /** |
#7 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/CController.php(1148): CFilter->filter(CFilterChain) 1143 */ 1144 public function filterAccessControl($filterChain) 1145 { 1146 $filter=new CAccessControlFilter; 1147 $filter->setRules($this->accessRules()); 1148 $filter->filter($filterChain); 1149 } 1150 1151 /** 1152 * Returns a persistent page state value. 1153 * A page state is a variable that is persistent across POST requests of the same page. |
#8 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/filters/CInlineFilter.php(58): CController->filterAccessControl(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/clingroup.net/sp.clingroup.net/protected/framework/web/filters/CFilterChain.php(131): CInlineFilter->filter(CFilterChain) 126 { 127 if($this->offsetExists($this->filterIndex)) 128 { 129 $filter=$this->itemAt($this->filterIndex++); 130 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 131 $filter->filter($this); 132 } 133 else 134 $this->controller->runAction($this->action); 135 } 136 } |
#10 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/CController.php(291): CFilterChain->run() 286 $this->runAction($action); 287 else 288 { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); 292 $this->_action=$priorAction; 293 } 294 } 295 296 /** |
#11 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/CController.php(265): CController->runActionWithFilters(CInlineAction, array("accessControl", "postOnly + delete")) 260 { 261 if(($parent=$this->getModule())===null) 262 $parent=Yii::app(); 263 if($parent->beforeControllerAction($this,$action)) 264 { 265 $this->runActionWithFilters($action,$this->filters()); 266 $parent->afterControllerAction($this,$action); 267 } 268 } 269 else 270 $this->missingAction($actionID); |
#12 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/CWebApplication.php(285): CController->run("") 280 { 281 list($controller,$actionID)=$ca; 282 $oldController=$this->_controller; 283 $this->_controller=$controller; 284 $controller->init(); 285 $controller->run($actionID); 286 $this->_controller=$oldController; 287 } 288 else 289 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 290 array('{route}'=>$route===''?$this->defaultController:$route))); |
#13 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/CWebApplication.php(144): CWebApplication->runController("") 139 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 140 $_GET[$name]=$value; 141 } 142 else 143 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 144 $this->runController($route); 145 } 146 147 /** 148 * Registers the core application components. 149 * This method overrides the parent implementation by registering additional core components. |
#14 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/base/CApplication.php(250): CWebApplication->processRequest() 245 public function run() 246 { 247 if ($this->hasEventHandler('onBeginRequest')) 248 $this->onBeginRequest(new CEvent($this)); 249 register_shutdown_function(array($this, 'end'), 0, false); 250 $this->processRequest(); 251 if ($this->hasEventHandler('onEndRequest')) 252 $this->onEndRequest(new CEvent($this)); 253 } 254 255 /** |
#15 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/index.php(18): CApplication->run() 13 defined('YII_DEBUG') or define('YII_DEBUG', $app['DEBUG']); 14 // specify how many levels of call stack should be shown in each log message 15 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3); 16 17 require_once($yii); 18 Yii::createWebApplication($config)->run(); |