Giá ép Cọc Bê Tông 300x300 Hà Nội Tỉnh Miền Bắc
Có thể bạn quan tâm
SQLSTATE[HY000] [2002] Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (111)
↵Caused by: PDOException
SQLSTATE[HY000] [2002] Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (111)
in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/db/Connection.php at line 579
- 1. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/db/Connection.php at line 534 525526527528529530531532533534535536537538539540541542543 $token = 'Opening DB connection: ' . $this->dsn; try { Yii::info($token, __METHOD__); Yii::beginProfile($token, __METHOD__); $this->pdo = $this->createPdoInstance(); $this->initConnection(); Yii::endProfile($token, __METHOD__); } catch (\PDOException $e) { Yii::endProfile($token, __METHOD__); throw new Exception($e->getMessage(), $e->errorInfo, (int) $e->getCode(), $e); } } /** * Closes the currently active DB connection. * It does nothing if the connection is already closed. */ public function close() {
- 2. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/db/Connection.php at line 836 – yii\db\Connection::open() 830831832833834835836837838839840841842 * Returns the PDO instance for the currently active master connection. * This method will open the master DB connection and then return [[pdo]]. * @return PDO the PDO instance for the currently active master connection. */ public function getMasterPdo() { $this->open(); return $this->pdo; } /** * Returns the currently active slave connection. * If this method is called the first time, it will try to open a slave connection when [[enableSlaves]] is true.
- 3. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/db/Connection.php at line 823 – yii\db\Connection::getMasterPdo() 817818819820821822823824825826827828829 * is available and `$fallbackToMaster` is false. */ public function getSlavePdo($fallbackToMaster = true) { $db = $this->getSlave(false); if ($db === null) { return $fallbackToMaster ? $this->getMasterPdo() : null; } else { return $db->pdo; } } /**
- 4. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/db/Schema.php at line 477 – yii\db\Connection::getSlavePdo() 471472473474475476477478479480481482483 public function quoteValue($str) { if (!is_string($str)) { return $str; } if (($value = $this->db->getSlavePdo()->quote($str)) !== false) { return $value; } else { // the driver doesn't support quote (e.g. oci) return "'" . addcslashes(str_replace("'", "''", $str), "\000\n\r\\\032") . "'"; } }
- 5. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/db/Connection.php at line 732 – yii\db\Schema::quoteValue('1000249') 726727728729730731732733734735736737738 * @param string $value string to be quoted * @return string the properly quoted string * @see http://www.php.net/manual/en/function.PDO-quote.php */ public function quoteValue($value) { return $this->getSchema()->quoteValue($value); } /** * Quotes a table name for use in a query. * If the table name contains schema prefix, the prefix will also be properly quoted. * If the table name is already quoted or contains special characters including '(', '[[' and '{{',
- 6. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/db/Command.php at line 172 – yii\db\Connection::quoteValue('1000249') 166167168169170171172173174175176177178 $params = []; foreach ($this->params as $name => $value) { if (is_string($name) && strncmp(':', $name, 1)) { $name = ':' . $name; } if (is_string($value)) { $params[$name] = $this->db->quoteValue($value); } elseif (is_bool($value)) { $params[$name] = ($value ? 'TRUE' : 'FALSE'); } elseif ($value === null) { $params[$name] = 'NULL'; } elseif (!is_object($value) && !is_resource($value)) { $params[$name] = $value;
- 7. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/db/Command.php at line 806 – yii\db\Command::getRawSql() 800801802803804805806807808809810811812 * @return mixed the method execution result * @throws Exception if the query causes any problem * @since 2.0.1 this method is protected (was private before). */ protected function queryInternal($method, $fetchMode = null) { $rawSql = $this->getRawSql(); Yii::info($rawSql, 'yii\db\Command::query'); if ($method !== '') { $info = $this->db->getQueryCacheInfo($this->queryCacheDuration, $this->queryCacheDependency); if (is_array($info)) {
- 8. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/db/Command.php at line 373 – yii\db\Command::queryInternal('fetch', null) 367368369370371372373374375376377378379 * @return array|boolean the first row (in terms of an array) of the query result. False is returned if the query * results in nothing. * @throws Exception execution failed */ public function queryOne($fetchMode = null) { return $this->queryInternal('fetch', $fetchMode); } /** * Executes the SQL statement and returns the value of the first column in the first row of data. * This method is best used when only a single value is needed for a query. * @return string|null|boolean the value of the first column in the first row of the query result.
- 9. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/db/Query.php at line 243 – yii\db\Command::queryOne() 237238239240241242243244245246247248249 * If this parameter is not given, the `db` application component will be used. * @return array|boolean the first row (in terms of an array) of the query result. False is returned if the query * results in nothing. */ public function one($db = null) { return $this->createCommand($db)->queryOne(); } /** * Returns the query result as a scalar value. * The value returned will be the first column in the first row of the query results. * @param Connection $db the database connection used to generate the SQL statement.
- 10. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/db/ActiveQuery.php at line 300 – yii\db\Query::one(null) 294295296297298299300301302303304305306 * @return ActiveRecord|array|null a single row of query result. Depending on the setting of [[asArray]], * the query result may be either an array or an ActiveRecord object. Null will be returned * if the query results in nothing. */ public function one($db = null) { $row = parent::one($db); if ($row !== false) { $models = $this->populate([$row]); return reset($models) ?: null; } else { return null; }
- 11. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/controllers/NewsController.php at line 57 – yii\db\ActiveQuery::one() 51525354555657585960616263 ->with(['category']) ->where([ 'id' => $id, 'status' => Content::STATUS_ACTIVE, 'deleted' => 0 ]) ->one(); if (!$model) { throw new NotFoundHttpException('Không tìm thấy trang web theo yêu cầu.'); } $tags = Tag::getContentTagsAsHtml($model->id, [
- 12. app\controllers\NewsController::actionView('1000249')
- 13. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/base/InlineAction.php at line 55 – call_user_func_array([app\controllers\NewsController, 'actionView'], ['1000249']) 495051525354555657 $args = $this->controller->bindActionParams($this, $params); Yii::trace('Running action: ' . get_class($this->controller) . '::' . $this->actionMethod . '()', __METHOD__); if (Yii::$app->requestedParams === null) { Yii::$app->requestedParams = $args; } return call_user_func_array([$this->controller, $this->actionMethod], $args); } }
- 14. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/base/Controller.php at line 151 – yii\base\InlineAction::runWithParams(['parent' => 'bao-gia-ep-coc-be-tong', 'alias' => 'gia-ep-coc-be-tong-300x300-ha-no...', 'id' => '1000249']) 145146147148149150151152153154155156157 } $result = null; if ($runAction && $this->beforeAction($action)) { // run the action $result = $action->runWithParams($params); $result = $this->afterAction($action, $result); // call afterAction on modules foreach ($modules as $module) { /* @var $module Module */
- 15. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/base/Module.php at line 455 – yii\base\Controller::runAction('view', ['parent' => 'bao-gia-ep-coc-be-tong', 'alias' => 'gia-ep-coc-be-tong-300x300-ha-no...', 'id' => '1000249']) 449450451452453454455456457458459460461 $parts = $this->createController($route); if (is_array($parts)) { /* @var $controller Controller */ list($controller, $actionID) = $parts; $oldController = Yii::$app->controller; Yii::$app->controller = $controller; $result = $controller->runAction($actionID, $params); Yii::$app->controller = $oldController; return $result; } else { $id = $this->getUniqueId(); throw new InvalidRouteException('Unable to resolve the request "' . ($id === '' ? $route : $id . '/' . $route) . '".');
- 16. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/web/Application.php at line 84 – yii\base\Module::runAction('news/view', ['parent' => 'bao-gia-ep-coc-be-tong', 'alias' => 'gia-ep-coc-be-tong-300x300-ha-no...', 'id' => '1000249']) 78798081828384858687888990 $params = $this->catchAll; unset($params[0]); } try { Yii::trace("Route requested: '$route'", __METHOD__); $this->requestedRoute = $route; $result = $this->runAction($route, $params); if ($result instanceof Response) { return $result; } else { $response = $this->getResponse(); if ($result !== null) { $response->data = $result;
- 17. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/base/Application.php at line 375 – yii\web\Application::handleRequest(yii\web\Request) 369370371372373374375376377378379380381 try { $this->state = self::STATE_BEFORE_REQUEST; $this->trigger(self::EVENT_BEFORE_REQUEST); $this->state = self::STATE_HANDLING_REQUEST; $response = $this->handleRequest($this->getRequest()); $this->state = self::STATE_AFTER_REQUEST; $this->trigger(self::EVENT_AFTER_REQUEST); $this->state = self::STATE_SENDING_RESPONSE; $response->send();
- 18. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/web/index.php at line 12 – yii\base\Application::run() 6789101112 require(__DIR__ . '/../vendor/autoload.php'); require(__DIR__ . '/../vendor/yiisoft/yii2/Yii.php'); $config = require(__DIR__ . '/../config/web.php'); (new yii\web\Application($config))->run();
2026-02-04, 04:33:17
Apache/2
Yii Framework/2.0.6
Từ khóa » Cọc Btct 300x300
-
BÁO GIÁ CỌC 300X300
-
BÁO GIÁ ĐÚC-ÉP CỌC BÊ TÔNG CỐT THÉP 300X300, 350X350 ...
-
Báo Giá Cọc Bê Tông Cốt Thép Vuông 300X300-350X350 FULL 2022
-
Bảng Báo Giá ép Cọc Bê Tông 300x300 Tại Hà Nội
-
Báo Giá Cọc 300x300
-
Báo Giá ép Cọc 300x300 Thép Pomina Chất Lượng Cao Tại TP.HCM
-
Bảng Giá ép Cọc Bê Tông 200x200, 250x250, 300x300, 400x400, D300
-
Báo Giá Cọc Bê Tông 300x300 đúc Sẵn Tại Xưởng & Thiết Kế Tại [Hà ...
-
Cọc Bê Tông Cốt Thép 300×300 Và Bảng Báo Giá Thị Trường 2022
-
Giá ép Cọc Bê Tông 300x300 Tại Hà Nội & TPHCM 2020
-
Báo Giá Cọc Btct 300x300
-
Ép Cọc Bê Tông 300X300 - 350x350 - 400x400 Giá Rẻ
-
Báo Giá Cọc Bê Tông Các Loại Tại TP.HCM Và Các Tỉnh Lân Cận