/data/merkezi/public_html/framework/web/CHttpRequest.php(803)
791 /** 792 * Redirects the browser to the specified URL. 793 * @param string $url URL to be redirected to. Note that when URL is not 794 * absolute (not starting with "/") it will be relative to current request URL. 795 * @param boolean $terminate whether to terminate the current application 796 * @param integer $statusCode the HTTP status code. Defaults to 302. See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} 797 * for details about HTTP status code. 798 */ 799 public function redirect($url,$terminate=true,$statusCode=302) 800 { 801 if(strpos($url,'/')===0 && strpos($url,'//')!==0) 802 $url=$this->getHostInfo().$url; 803 header('Location: '.$url, true, $statusCode); 804 if($terminate) 805 Yii::app()->end(); 806 } 807 808 /** 809 * Parses an HTTP Accept header, returning an array map with all parts of each entry. 810 * Each array entry consists of a map with the type, subType, baseType and params, an array map of key-value parameters, 811 * obligatorily including a `q` value (i.e. preference ranking) as a double. 812 * For example, an Accept header value of <code>'application/xhtml+xml;q=0.9;level=1'</code> would give an array entry of 813 * <pre> 814 * array( 815 * 'type' => 'application',
#0 |
+
–
/data/merkezi/public_html/framework/web/CHttpRequest.php(803): header("Location: http://merkeziklinika.az/xeberler", true, 302) 798 */ 799 public function redirect($url,$terminate=true,$statusCode=302) 800 { 801 if(strpos($url,'/')===0 && strpos($url,'//')!==0) 802 $url=$this->getHostInfo().$url; 803 header('Location: '.$url, true, $statusCode); 804 if($terminate) 805 Yii::app()->end(); 806 } 807 808 /** |
#1 |
+
–
/data/merkezi/public_html/framework/web/CController.php(1030): CHttpRequest->redirect("/xeberler", true, 302) 1025 if(is_array($url)) 1026 { 1027 $route=isset($url[0]) ? $url[0] : ''; 1028 $url=$this->createUrl($route,array_splice($url,1)); 1029 } 1030 Yii::app()->getRequest()->redirect($url,$terminate,$statusCode); 1031 } 1032 1033 /** 1034 * Refreshes the current page. 1035 * The effect of this method call is the same as user pressing the |
#2 |
+
–
/data/merkezi/public_html/protected/controllers/XeberlerController.php(63): CController->redirect("/xeberler") 58 59 public function actionView($id=0) 60 { 61 $menu_info=Menyular::model()->find('link=:link and lang_id=:lang_id', array(':link'=>'xeberler/index',':lang_id'=>$this->lang_id)); 62 $xeber_info=Xeberler::model()->find('auto_id=:auto_id and lang_id=:lang_id and aktivlik=:aktivlik', array(':auto_id'=>$id,':lang_id'=>$this->lang_id, ':aktivlik'=>$this->active)); 63 if(empty($xeber_info)) $this->redirect(Yii::app()->request->baseUrl.'/'.$this->controller); 64 65 $xeber_info->oxunma_sayi=$xeber_info->oxunma_sayi+1; 66 $xeber_info->save(false); 67 68 $return_data['id']=$id; |
#3 |
unknown(0): XeberlerController->actionView(0)
|
#4 |
+
–
/data/merkezi/public_html/framework/web/actions/CAction.php(108): ReflectionMethod->invokeArgs(XeberlerController, array(0)) 103 elseif($param->isDefaultValueAvailable()) 104 $ps[]=$param->getDefaultValue(); 105 else 106 return false; 107 } 108 $method->invokeArgs($object,$ps); 109 return true; 110 } 111 } |
#5 |
+
–
/data/merkezi/public_html/framework/web/actions/CInlineAction.php(47): CAction->runWithParamsInternal(XeberlerController, ReflectionMethod, array("page" => "index", 67 => "")) 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 } |
#6 |
+
–
/data/merkezi/public_html/framework/web/CController.php(308): CInlineAction->runWithParams(array("page" => "index", 67 => "")) 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; |
#7 |
+
–
/data/merkezi/public_html/framework/web/CController.php(286): CController->runAction(CInlineAction) 281 * @see runAction 282 */ 283 public function runActionWithFilters($action,$filters) 284 { 285 if(empty($filters)) 286 $this->runAction($action); 287 else 288 { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); |
#8 |
+
–
/data/merkezi/public_html/framework/web/CController.php(265): CController->runActionWithFilters(CInlineAction, array()) 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); |
#9 |
+
–
/data/merkezi/public_html/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))); |
#10 |
+
–
/data/merkezi/public_html/framework/web/CWebApplication.php(141): CWebApplication->runController("xeberler/view/page/index/67") 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. |
#11 |
+
–
/data/merkezi/public_html/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 /** |
#12 |
+
–
/data/merkezi/public_html/index.php(14): CApplication->run() 09 defined('YII_DEBUG') or define('YII_DEBUG',true); 10 // specify how many levels of call stack should be shown in each log message 11 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); 12 13 require_once($yii); 14 Yii::createWebApplication($config)->run(); 15 ?> |