/home3/searchdo/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/CHttpRequest.php(716)
704 /** 705 * Redirects the browser to the specified URL. 706 * @param string $url URL to be redirected to. If the URL is a relative one, the base URL of 707 * the application will be inserted at the beginning. 708 * @param boolean $terminate whether to terminate the current application 709 * @param integer $statusCode the HTTP status code. Defaults to 302. See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} 710 * for details about HTTP status code. 711 */ 712 public function redirect($url,$terminate=true,$statusCode=302) 713 { 714 if(strpos($url,'/')===0) 715 $url=$this->getHostInfo().$url; 716 header('Location: '.$url, true, $statusCode); 717 if($terminate) 718 Yii::app()->end(); 719 } 720 721 /** 722 * Returns the user preferred language. 723 * The returned language ID will be canonicalized using {@link CLocale::getCanonicalID}. 724 * This method returns false if the user does not have language preference. 725 * @return string the user preferred language. 726 */ 727 public function getPreferredLanguage() 728 {
#0 |
+
–
/home3/searchdo/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/CHttpRequest.php(716): header("Location: https://searchdonation.com/site/login/", true, 302) 711 */ 712 public function redirect($url,$terminate=true,$statusCode=302) 713 { 714 if(strpos($url,'/')===0) 715 $url=$this->getHostInfo().$url; 716 header('Location: '.$url, true, $statusCode); 717 if($terminate) 718 Yii::app()->end(); 719 } 720 721 /** |
#1 |
+
–
/home3/searchdo/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/auth/CWebUser.php(372): CHttpRequest->redirect("https://searchdonation.com/site/login/") 367 if(is_array($url)) 368 { 369 $route=isset($url[0]) ? $url[0] : $app->defaultController; 370 $url=$app->createUrl($route,array_splice($url,1)); 371 } 372 $request->redirect($url); 373 } 374 else 375 throw new CHttpException(403,Yii::t('yii','Login Required')); 376 } 377 |
#2 |
+
–
/home3/searchdo/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/auth/CAccessControlFilter.php(155): CWebUser->loginRequired() 150 * @param string $message the error message to be displayed 151 */ 152 protected function accessDenied($user,$message) 153 { 154 if($user->getIsGuest()) 155 $user->loginRequired(); 156 else 157 throw new CHttpException(403,$message); 158 } 159 } 160 |
#3 |
+
–
/home3/searchdo/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/auth/CAccessControlFilter.php(120): CAccessControlFilter->accessDenied(CWebUser, "You are not authorized to perform this action. Please contact to...") 115 { 116 if(($allow=$rule->isUserAllowed($user,$filterChain->controller,$filterChain->action,$ip,$verb))>0) // allowed 117 break; 118 else if($allow<0) // denied 119 { 120 $this->accessDenied($user,$this->resolveErrorMessage($rule)); 121 return false; 122 } 123 } 124 125 return true; |
#4 |
+
–
/home3/searchdo/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/filters/CFilter.php(39): CAccessControlFilter->preFilter(CFilterChain) 34 * if the action should be executed. 35 * @param CFilterChain $filterChain the filter chain that the filter is on. 36 */ 37 public function filter($filterChain) 38 { 39 if($this->preFilter($filterChain)) 40 { 41 $filterChain->run(); 42 $this->postFilter($filterChain); 43 } 44 } |
#5 |
+
–
/home3/searchdo/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/CController.php(1146): CFilter->filter(CFilterChain) 1141 */ 1142 public function filterAccessControl($filterChain) 1143 { 1144 $filter=new CAccessControlFilter; 1145 $filter->setRules($this->accessRules()); 1146 $filter->filter($filterChain); 1147 } 1148 1149 /** 1150 * Returns a persistent page state value. 1151 * A page state is a variable that is persistent across POST requests of the same page. |
#6 |
+
–
/home3/searchdo/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/filters/CInlineFilter.php(59): CController->filterAccessControl(CFilterChain) 54 * @param CFilterChain $filterChain the filter chain that the filter is on. 55 */ 56 public function filter($filterChain) 57 { 58 $method='filter'.$this->name; 59 $filterChain->controller->$method($filterChain); 60 } 61 } |
#7 |
+
–
/home3/searchdo/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/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 } |
#8 |
+
–
/home3/searchdo/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/CController.php(292): CFilterChain->run() 287 $this->runAction($action); 288 else 289 { 290 $priorAction=$this->_action; 291 $this->_action=$action; 292 CFilterChain::create($this,$action,$filters)->run(); 293 $this->_action=$priorAction; 294 } 295 } 296 297 /** |
#9 |
+
–
/home3/searchdo/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/CController.php(266): CController->runActionWithFilters(CInlineAction, array("accessControl")) 261 { 262 if(($parent=$this->getModule())===null) 263 $parent=Yii::app(); 264 if($parent->beforeControllerAction($this,$action)) 265 { 266 $this->runActionWithFilters($action,$this->filters()); 267 $parent->afterControllerAction($this,$action); 268 } 269 } 270 else 271 $this->missingAction($actionID); |
#10 |
+
–
/home3/searchdo/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/CWebApplication.php(276): CController->run("create") 271 { 272 list($controller,$actionID)=$ca; 273 $oldController=$this->_controller; 274 $this->_controller=$controller; 275 $controller->init(); 276 $controller->run($actionID); 277 $this->_controller=$oldController; 278 } 279 else 280 require_once 'profiles/index.php'; 281 /* throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', |
#11 |
+
–
/home3/searchdo/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/CWebApplication.php(135): CWebApplication->runController("postnews/create") 130 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 131 $_GET[$name]=$value; 132 } 133 else 134 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 135 $this->runController($route); 136 } 137 138 /** 139 * Registers the core application components. 140 * This method overrides the parent implementation by registering additional core components. |
#12 |
+
–
/home3/searchdo/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/base/CApplication.php(162): CWebApplication->processRequest() 157 */ 158 public function run() 159 { 160 if($this->hasEventHandler('onBeginRequest')) 161 $this->onBeginRequest(new CEvent($this)); 162 $this->processRequest(); 163 if($this->hasEventHandler('onEndRequest')) 164 $this->onEndRequest(new CEvent($this)); 165 } 166 167 /** |
#13 |
+
–
/home3/searchdo/public_html/index.php(11): CApplication->run() 06 $yii = dirname(__FILE__) . '/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/yii.php'; 07 $config = dirname(__FILE__) . '/protected/config/main.php'; 08 defined('YII_DEBUG') or define('YII_DEBUG', TRUE); 09 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 0); 10 require_once($yii); 11 Yii::createWebApplication($config)->run(); 12 ?> |