main APPLICATION_ENV:
/home1/japankar/public_html/drs/tmp/yii/framework/web/CHttpSession.php(88)
076 */ 077 public $autoStart=true; 078 079 /** 080 * Initializes the application component. 081 * This method is required by IApplicationComponent and is invoked by application. 082 */ 083 public function init() 084 { 085 parent::init(); 086 087 // default session gc probability is 1% 088 ini_set('session.gc_probability',1); 089 ini_set('session.gc_divisor',100); 090 091 if($this->autoStart) 092 $this->open(); 093 register_shutdown_function(array($this,'close')); 094 } 095 096 /** 097 * Returns a value indicating whether to use custom session storage. 098 * This method should be overriden to return true if custom session storage handler should be used. 099 * If returning true, make sure the methods {@link openSession}, {@link closeSession}, {@link readSession}, 100 * {@link writeSession}, {@link destroySession}, and {@link gcSession} are overridden in child
#0 |
+
–
/home1/japankar/public_html/drs/tmp/yii/framework/web/CHttpSession.php(88): ini_set("session.gc_probability", 1) 83 public function init() 84 { 85 parent::init(); 86 87 // default session gc probability is 1% 88 ini_set('session.gc_probability',1); 89 ini_set('session.gc_divisor',100); 90 91 if($this->autoStart) 92 $this->open(); 93 register_shutdown_function(array($this,'close')); |
#1 |
+
–
/home1/japankar/public_html/drs/tmp/yii/framework/base/CModule.php(387): CHttpSession->init() 382 if(!isset($config['enabled']) || $config['enabled']) 383 { 384 Yii::trace("Loading \"$id\" application component",'system.CModule'); 385 unset($config['enabled']); 386 $component=Yii::createComponent($config); 387 $component->init(); 388 return $this->_components[$id]=$component; 389 } 390 } 391 } 392 |
#2 |
+
–
/home1/japankar/public_html/drs/tmp/yii/framework/web/CWebApplication.php(201): CModule->getComponent("session") 196 /** 197 * @return CHttpSession the session component 198 */ 199 public function getSession() 200 { 201 return $this->getComponent('session'); 202 } 203 204 /** 205 * @return CWebUser the user session information 206 */ |
#3 |
+
–
/home1/japankar/public_html/drs/tmp/yii/framework/web/auth/CWebUser.php(193): CWebApplication->getSession() 188 * performing cookie-based authentication if enabled, and updating the flash variables. 189 */ 190 public function init() 191 { 192 parent::init(); 193 Yii::app()->getSession()->open(); 194 if($this->getIsGuest() && $this->allowAutoLogin) 195 $this->restoreFromCookie(); 196 elseif($this->autoRenewCookie && $this->allowAutoLogin) 197 $this->renewCookie(); 198 if($this->autoUpdateFlash) |
#4 |
+
–
/home1/japankar/public_html/drs/tmp/yii/framework/base/CModule.php(387): CWebUser->init() 382 if(!isset($config['enabled']) || $config['enabled']) 383 { 384 Yii::trace("Loading \"$id\" application component",'system.CModule'); 385 unset($config['enabled']); 386 $component=Yii::createComponent($config); 387 $component->init(); 388 return $this->_components[$id]=$component; 389 } 390 } 391 } 392 |
#5 |
+
–
/home1/japankar/public_html/drs/tmp/yii/framework/base/CModule.php(103): CModule->getComponent("user") 098 * @return mixed the named property value 099 */ 100 public function __get($name) 101 { 102 if($this->hasComponent($name)) 103 return $this->getComponent($name); 104 else 105 return parent::__get($name); 106 } 107 108 /** |
#6 |
+
–
/home1/japankar/public_html/drs/web/protected/controllers/SiteController.php(36): CModule->__get("user") 31 32 // renders the view file 'protected/views/site/index.php' 33 // using the default layout 'protected/views/layouts/main.php' 34 //$this->render('index'); 35 36 if(Yii::app()->user->isGuest) { 37 $this->actionLogin(); 38 } 39 else 40 { 41 // renders the view file 'protected/views/site/index.php' |
#7 |
+
–
/home1/japankar/public_html/drs/tmp/yii/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 else 49 return $controller->$methodName(); 50 } 51 52 } |
#8 |
+
–
/home1/japankar/public_html/drs/tmp/yii/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; |
#9 |
+
–
/home1/japankar/public_html/drs/tmp/yii/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(); |
#10 |
+
–
/home1/japankar/public_html/drs/tmp/yii/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); |
#11 |
+
–
/home1/japankar/public_html/drs/tmp/yii/framework/web/CWebApplication.php(282): CController->run("") 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))); |
#12 |
+
–
/home1/japankar/public_html/drs/tmp/yii/framework/web/CWebApplication.php(141): CWebApplication->runController("") 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. |
#13 |
+
–
/home1/japankar/public_html/drs/tmp/yii/framework/base/CApplication.php(169): CWebApplication->processRequest() 164 public function run() 165 { 166 if($this->hasEventHandler('onBeginRequest')) 167 $this->onBeginRequest(new CEvent($this)); 168 register_shutdown_function(array($this,'end'),0,false); 169 $this->processRequest(); 170 if($this->hasEventHandler('onEndRequest')) 171 $this->onEndRequest(new CEvent($this)); 172 } 173 174 /** |
#14 |
+
–
/home1/japankar/public_html/drs/web/index.php(35): CApplication->run() 30 $cs->scriptMap=array( 31 'jquery.js'=>false, 32 'jquery.min.js'=>false, 33 ); 34 35 $app->run(); |