Kem Dưỡng Accare
Có thể bạn quan tâm
CDbException
2026-03-10 08:35:01 Apache/2.4.7 (Ubuntu) Yii Framework/1.1.15
CDbConnection failed to open the DB connection: SQLSTATE[HY000] [2002] Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (111)
/var/www/html/common/classs/ClaSite.php(480)
468 * @param type $domain 469 * @return array 470 */ 471 public static function getDomainInfo($domain = null) { 472 473 if (!$domain) 474 $domain = self::getServerName(); 475 $domaininfo = Yii::app()->cache->get(self::CACHE_DOMAIN_PRE . $domain); 476 477 478 if (!$domaininfo) { 479 480 $domaininfo = Yii::app()->db->createCommand()->select('*')->from(ClaTable::getTable('domain')) 481 ->where('domain_id=:domain_id', array(':domain_id' => $domain)) 482 ->queryRow(); 483 484 if ($domaininfo) 485 Yii::app()->cache->set('domain_' . $domain, $domaininfo); 486 } 487 488 return $domaininfo; 489 } 490 491 /** 492 * Get site id from domainStack Trace
| #0 | + – /var/www/html/common/lib/yii-framework-1.1.15/yii.php(8400): CDbConnection->open() 8395 public function setActive($value) 8396 { 8397 if($value!=$this->_active) 8398 { 8399 if($value) 8400 $this->open(); 8401 else 8402 $this->close(); 8403 } 8404 } 8405 public function cache($duration, $dependency=null, $queryCount=1) |
| #1 | + – /var/www/html/common/lib/yii-framework-1.1.15/yii.php(8389): CDbConnection->setActive(true) 8384 } 8385 public function init() 8386 { 8387 parent::init(); 8388 if($this->autoConnect) 8389 $this->setActive(true); 8390 } 8391 public function getActive() 8392 { 8393 return $this->_active; 8394 } |
| #2 | + – /var/www/html/common/lib/yii-framework-1.1.15/yii.php(1060): CDbConnection->init() 1055 $config=$this->_componentConfig[$id]; 1056 if(!isset($config['enabled']) || $config['enabled']) 1057 { 1058 unset($config['enabled']); 1059 $component=Yii::createComponent($config); 1060 $component->init(); 1061 return $this->_components[$id]=$component; 1062 } 1063 } 1064 } 1065 public function setComponent($id,$component,$merge=true) |
| #3 | + – /var/www/html/common/lib/yii-framework-1.1.15/yii.php(915): CModule->getComponent("db") 910 $this->init(); 911 } 912 public function __get($name) 913 { 914 if($this->hasComponent($name)) 915 return $this->getComponent($name); 916 else 917 return parent::__get($name); 918 } 919 public function __isset($name) 920 { |
| #4 | + – /var/www/html/common/classs/ClaSite.php(480): CModule->__get("db") 475 $domaininfo = Yii::app()->cache->get(self::CACHE_DOMAIN_PRE . $domain); 476 477 478 if (!$domaininfo) { 479 480 $domaininfo = Yii::app()->db->createCommand()->select('*')->from(ClaTable::getTable('domain')) 481 ->where('domain_id=:domain_id', array(':domain_id' => $domain)) 482 ->queryRow(); 483 484 if ($domaininfo) 485 Yii::app()->cache->set('domain_' . $domain, $domaininfo); |
| #5 | + – /var/www/html/common/classs/ClaSite.php(496): ClaSite::getDomainInfo(null) 491 /** 492 * Get site id from domain 493 * @param type $domain 494 */ 495 public static function getSiteIdFromDomain($domain = null) { 496 $domaininfo = self::getDomainInfo($domain); 497 if (!$domaininfo) 498 return 0; 499 return $domaininfo['site_id']; 500 } 501 |
| #6 | + – /var/www/html/common/classs/ClaSite.php(517): ClaSite::getSiteIdFromDomain() 512 */ 513 public static function getSiteInfo($site_id = 0) { 514 $site_id = (int) $site_id; 515 516 if (!$site_id) 517 $site_id = self::getSiteIdFromDomain(); 518 519 520 if ($site_id) { 521 // 522 $translate_language = self::getLanguageTranslate(); |
| #7 | + – /var/www/html/protected/components/PublicWebApplication.php(35): ClaSite::getSiteInfo() 30 $this->isDemo = true; 31 // 32 Yii::app()->cache->keyPrefix = 'demo'; 33 } 34 35 $this->siteinfo = ClaSite::getSiteInfo(); 36 37 38 if (!$this->siteinfo || !count($this->siteinfo)) 39 Yii::app()->end(); 40 if (!isset($this->siteinfo['site_id'])) |
| #8 | + – /var/www/html/common/lib/yii-framework-1.1.15/yii.php(1184): PublicWebApplication->init() 1179 $this->initSystemHandlers(); 1180 $this->registerCoreComponents(); 1181 $this->configure($config); 1182 $this->attachBehaviors($this->behaviors); 1183 $this->preloadComponents(); 1184 $this->init(); 1185 } 1186 public function run() 1187 { 1188 if($this->hasEventHandler('onBeginRequest')) 1189 $this->onBeginRequest(new CEvent($this)); |
| #9 | + – /var/www/html/common/lib/yii-framework-1.1.15/yii.php(55): CApplication->__construct("/var/www/html/protected/config/main.php") 50 { 51 return self::createApplication('CConsoleApplication',$config); 52 } 53 public static function createApplication($class,$config=null) 54 { 55 return new $class($config); 56 } 57 public static function app() 58 { 59 return self::$_app; 60 } |
| #10 | + – /var/www/html/index.php(23): YiiBase::createApplication("PublicWebApplication", "/var/www/html/protected/config/main.php") 18 require_once($yii); 19 require_once('common/components/WebApplication.php'); 20 require_once('common/lib/global.php'); 21 require_once('protected/components/PublicWebApplication.php'); 22 23 $app = Yii::createApplication('PublicWebApplication', $config); 24 $app->run(); 25 //Yii::createWebApplication($config); 26 //Yii::app()->run(); 27 28 |
Từ khóa » Kem Dưỡng Ac Care Có Phải Kem Trộn Không
-
Detail Category - Mỹ Phẩm Accare
-
Danh Sách Các Loại Mỹ Phẩm Chứa Corticoid Các Chị Em Cần Tránh Xa
-
Danh Sách Các Loại Kem Trộn 2020 Mà Các Bạn Gái Cần Biết - JAMJA
-
5 Cách đơn Giản Nhất Giúp Phân Biệt Kem Trộn “siêu Chuẩn”
-
Kem Dưỡng Hot Nhất 2020 | Facebook | By Lê Vân Anh
-
Lí Do Dù Xài Mỹ Phẩm đắt Tiền Nhưng Không Thể Lột Xác đẹp Lên Nỗi
-
[Cảnh Báo] Danh Sách Các Loại Kem Trộn Có Chứa Corticoid Các Bạn ...
-
Kem Dưỡng Ngừa Mụn, Mờ Thâm Nám Từ Nọc Ong AC Care Bee's ...
-
Danh Sách Mỹ Phẩm Chứa Corticoid - Da Liễu Thiên Trường
-
TOP 15 Dòng Kem Dưỡng Da Đài Loan Tốt Nhất Trên Thị Trường
-
Kem Trộn: Những Tác Hại Không Thể Ngờ Tới Và Cách Nhận Biết
-
VTC14_Phát Hiện Nhiều Mỹ Phẩm Chưa Nồng độ Corticoid Cao