object(mysqli)#1 (18) { ["affected_rows"]=> int(0) ["client_info"]=> string(14) "mysqlnd 7.4.33" ["client_version"]=> int(70433) ["connect_errno"]=> int(0) ["connect_error"]=> NULL ["errno"]=> int(0) ["error"]=> string(0) "" ["error_list"]=> array(0) { } ["field_count"]=> int(0) ["host_info"]=> string(13) "db via TCP/IP" ["info"]=> NULL ["insert_id"]=> int(0) ["server_info"]=> string(6) "8.0.43" ["server_version"]=> int(80043) ["sqlstate"]=> string(5) "00000" ["protocol_version"]=> int(10) ["thread_id"]=> int(342) ["warning_count"]=> int(0) } object(mysqli)#75 (18) { ["affected_rows"]=> int(0) ["client_info"]=> string(14) "mysqlnd 7.4.33" ["client_version"]=> int(70433) ["connect_errno"]=> int(0) ["connect_error"]=> NULL ["errno"]=> int(0) ["error"]=> string(0) "" ["error_list"]=> array(0) { } ["field_count"]=> int(0) ["host_info"]=> string(13) "db via TCP/IP" ["info"]=> NULL ["insert_id"]=> int(0) ["server_info"]=> string(6) "8.0.43" ["server_version"]=> int(80043) ["sqlstate"]=> string(5) "00000" ["protocol_version"]=> int(10) ["thread_id"]=> int(343) ["warning_count"]=> int(0) }
/var/www/html/yii/framework/web/CHttpSession.php(343)
331 * @return integer the number of seconds after which data will be seen as 'garbage' and cleaned up, defaults to 1440 seconds. 332 */ 333 public function getTimeout() 334 { 335 return (int)ini_get('session.gc_maxlifetime'); 336 } 337 338 /** 339 * @param integer $value the number of seconds after which data will be seen as 'garbage' and cleaned up 340 */ 341 public function setTimeout($value) 342 { 343 ini_set('session.gc_maxlifetime',$value); 344 } 345 346 /** 347 * Session open handler. 348 * This method should be overridden if {@link useCustomStorage} is set true. 349 * Do not call this method directly. 350 * @param string $savePath session save path 351 * @param string $sessionName session name 352 * @return boolean whether session is opened successfully 353 */ 354 public function openSession($savePath,$sessionName) 355 {
#0 |
+
–
/var/www/html/yii/framework/web/CHttpSession.php(343): ini_set("session.gc_maxlifetime", "3600") 338 /** 339 * @param integer $value the number of seconds after which data will be seen as 'garbage' and cleaned up 340 */ 341 public function setTimeout($value) 342 { 343 ini_set('session.gc_maxlifetime',$value); 344 } 345 346 /** 347 * Session open handler. 348 * This method should be overridden if {@link useCustomStorage} is set true. |
#1 |
+
–
/var/www/html/yii/framework/base/CComponent.php(152): CHttpSession->setTimeout(3600) 147 */ 148 public function __set($name,$value) 149 { 150 $setter='set'.$name; 151 if(method_exists($this,$setter)) 152 return $this->$setter($value); 153 elseif(strncasecmp($name,'on',2)===0 && method_exists($this,$name)) 154 { 155 // duplicating getEventHandlers() here for performance 156 $name=strtolower($name); 157 if(!isset($this->_e[$name])) |
#2 |
+
–
/var/www/html/yii/framework/YiiBase.php(220): CComponent->__set("timeout", 3600) 215 } 216 else 217 $object=new $type; 218 219 foreach($config as $key=>$value) 220 $object->$key=$value; 221 222 return $object; 223 } 224 225 /** |
#3 |
+
–
/var/www/html/yii/framework/base/CModule.php(386): YiiBase::createComponent(array("timeout" => 3600)) 381 $config=$this->_componentConfig[$id]; 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 } |
#4 |
+
–
/var/www/html/yii/framework/base/CModule.php(103): CModule->getComponent("session") 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 /** |
#5 |
+
–
/var/www/html/protected/components/Controller.php(102): CModule->__get("session") 097 date_default_timezone_set('Asia/Tokyo'); 098 $reurl=Yii::app()->request->requestUri; 099 100 if($reurl!="/user/login") 101 { 102 Yii::app()->session['previousURL']=$reurl; 103 } 104 105 $this->setCartItemCount(); 106 } 107 } |
#6 |
+
–
/var/www/html/protected/controllers/SearchController.php(35): Controller->init() 30 '20060' => array('name' => 'Manga / Animation'), 31 '26084' => array('name' => 'Other'), 32 ); 33 34 public function init() { 35 parent::init(); 36 $news = News::model()->findAll(array( 37 'condition' => 'deleted!=1', 38 'order' => 'modified DESC', 39 'limit' => 1, 40 )); |
#7 |
+
–
/var/www/html/yii/framework/web/CWebApplication.php(281): SearchController->init() 276 if(($ca=$this->createController($route))!==null) 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}".', |
#8 |
+
–
/var/www/html/yii/framework/web/CWebApplication.php(141): CWebApplication->runController("search/detail") 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. |
#9 |
+
–
/var/www/html/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 /** |
#10 |
+
–
/var/www/html/index.php(17): CApplication->run() 12 defined('YII_DEBUG') or define('YII_DEBUG', true); 13 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3); 14 15 require_once $yii; 16 require 'config.php'; 17 Yii::createWebApplication($config)->run(); |