/home3/jilan/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/CHttpSession.php(340)
328 * @return integer the number of seconds after which data will be seen as 'garbage' and cleaned up, defaults to 1440 seconds. 329 */ 330 public function getTimeout() 331 { 332 return (int)ini_get('session.gc_maxlifetime'); 333 } 334 335 /** 336 * @param integer $value the number of seconds after which data will be seen as 'garbage' and cleaned up 337 */ 338 public function setTimeout($value) 339 { 340 ini_set('session.gc_maxlifetime',$value); 341 } 342 343 /** 344 * Session open handler. 345 * This method should be overridden if {@link useCustomStorage} is set true. 346 * Do not call this method directly. 347 * @param string $savePath session save path 348 * @param string $sessionName session name 349 * @return boolean whether session is opened successfully 350 */ 351 public function openSession($savePath,$sessionName) 352 {
| #0 |
+
–
/home3/jilan/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/CHttpSession.php(340): ini_set("session.gc_maxlifetime", 1440) 335 /** 336 * @param integer $value the number of seconds after which data will be seen as 'garbage' and cleaned up 337 */ 338 public function setTimeout($value) 339 { 340 ini_set('session.gc_maxlifetime',$value); 341 } 342 343 /** 344 * Session open handler. 345 * This method should be overridden if {@link useCustomStorage} is set true. |
| #1 |
+
–
/home3/jilan/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/base/CComponent.php(153): CHttpSession->setTimeout(1440) 148 */ 149 public function __set($name,$value) 150 { 151 $setter='set'.$name; 152 if(method_exists($this,$setter)) 153 return $this->$setter($value); 154 else if(strncasecmp($name,'on',2)===0 && method_exists($this,$name)) 155 { 156 // duplicating getEventHandlers() here for performance 157 $name=strtolower($name); 158 if(!isset($this->_e[$name])) |
| #2 |
+
–
/home3/jilan/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/YiiBase.php(222): CComponent->__set("timeout", 1440) 217 } 218 else 219 $object=new $type; 220 221 foreach($config as $key=>$value) 222 $object->$key=$value; 223 224 return $object; 225 } 226 227 /** |
| #3 |
+
–
/home3/jilan/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/base/CModule.php(387): YiiBase::createComponent(array("autoStart" => true, "timeout" => 1440, "cookieMode" => "only", "cookieParams" => array("httponly" => true))) 382 $config=$this->_componentConfig[$id]; 383 if(!isset($config['enabled']) || $config['enabled']) 384 { 385 Yii::trace("Loading \"$id\" application component",'system.CModule'); 386 unset($config['enabled']); 387 $component=Yii::createComponent($config); 388 $component->init(); 389 return $this->_components[$id]=$component; 390 } 391 } 392 } |
| #4 |
+
–
/home3/jilan/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/CWebApplication.php(195): CModule->getComponent("session") 190 /** 191 * @return CHttpSession the session component 192 */ 193 public function getSession() 194 { 195 return $this->getComponent('session'); 196 } 197 198 /** 199 * @return CWebUser the user session information 200 */ |
| #5 |
+
–
/home3/jilan/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/auth/CWebUser.php(194): CWebApplication->getSession() 189 * performing cookie-based authentication if enabled, and updating the flash variables. 190 */ 191 public function init() 192 { 193 parent::init(); 194 Yii::app()->getSession()->open(); 195 if($this->getIsGuest() && $this->allowAutoLogin) 196 $this->restoreFromCookie(); 197 else if($this->autoRenewCookie && $this->allowAutoLogin) 198 $this->renewCookie(); 199 if($this->autoUpdateFlash) |
| #6 |
+
–
/home3/jilan/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/base/CModule.php(388): CWebUser->init() 383 if(!isset($config['enabled']) || $config['enabled']) 384 { 385 Yii::trace("Loading \"$id\" application component",'system.CModule'); 386 unset($config['enabled']); 387 $component=Yii::createComponent($config); 388 $component->init(); 389 return $this->_components[$id]=$component; 390 } 391 } 392 } 393 |
| #7 |
+
–
/home3/jilan/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/CWebApplication.php(203): CModule->getComponent("user") 198 /** 199 * @return CWebUser the user session information 200 */ 201 public function getUser() 202 { 203 return $this->getComponent('user'); 204 } 205 206 /** 207 * Returns the view renderer. 208 * If this component is registered and enabled, the default |
| #8 |
+
–
/home3/jilan/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/auth/CAccessControlFilter.php(110): CWebApplication->getUser() 105 */ 106 protected function preFilter($filterChain) 107 { 108 $app=Yii::app(); 109 $request=$app->getRequest(); 110 $user=$app->getUser(); 111 $verb=$request->getRequestType(); 112 $ip=$request->getUserHostAddress(); 113 114 foreach($this->getRules() as $rule) 115 { |
| #9 |
+
–
/home3/jilan/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 } |
| #10 |
+
–
/home3/jilan/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. |
| #11 |
+
–
/home3/jilan/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 } |
| #12 |
+
–
/home3/jilan/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 } |
| #13 |
+
–
/home3/jilan/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 /** |
| #14 |
+
–
/home3/jilan/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); |
| #15 |
+
–
/home3/jilan/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/CWebApplication.php(276): CController->run("display") 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 'beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/runtime/index.php'; 281 /* |
| #16 |
+
–
/home3/jilan/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/CWebApplication.php(135): CWebApplication->runController("students/display") 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. |
| #17 |
+
–
/home3/jilan/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 /** |
| #18 |
+
–
/home3/jilan/public_html/index.php(22): CApplication->run() 17 defined('YII_DEBUG') or define('YII_DEBUG', true); 18 // specify how many levels of call stack should be shown in each log message 19 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3); 20 21 require_once($yii); 22 Yii::createWebApplication($config)->run(); 23 } |