Ép Cọc Bê Tông Lạng Sơn Uy Tín Trọn Gói

Exception Database Exception – yii\db\Exception

SQLSTATE[HY000]: General error: 2013 Lost connection to MySQL server during query The SQL being executed was: SELECT * FROM `content` WHERE (`status`=1) AND (`deleted`=0) AND (`id` IN (SELECT `content_id` FROM `tag_content` WHERE `tag_id`=99)) ORDER BY `id` DESC LIMIT 20

Error Info: Array ( [0] => HY000 [1] => 2013 [2] => Lost connection to MySQL server during query )

Caused by: PDOException

SQLSTATE[HY000]: General error: 2013 Lost connection to MySQL server during query

in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/db/Command.php at line 837

  • 1. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/db/Schema.php at line 628 619620621622623624625626627628629630631632633634635636637 $exceptionClass = '\yii\db\Exception'; foreach ($this->exceptionMap as $error => $class) { if (strpos($e->getMessage(), $error) !== false) { $exceptionClass = $class; } } $message = $e->getMessage() . "\nThe SQL being executed was: $rawSql"; $errorInfo = $e instanceof \PDOException ? $e->errorInfo : null; return new $exceptionClass($message, $errorInfo, (int) $e->getCode(), $e); } /** * Returns a value indicating whether a SQL statement is for read purpose. * @param string $sql the SQL statement * @return boolean whether a SQL statement is for read purpose. */ public function isReadQuery($sql) {
  • 2. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/db/Command.php at line 852 – yii\db\Schema::convertException(PDOException, 'SELECT * FROM `content` WHERE (`...') 846847848849850851852853854855856857858 $this->pdoStatement->closeCursor(); } Yii::endProfile($token, 'yii\db\Command::query'); } catch (\Exception $e) { Yii::endProfile($token, 'yii\db\Command::query'); throw $this->db->getSchema()->convertException($e, $rawSql); } if (isset($cache, $cacheKey, $info)) { $cache->set($cacheKey, [$result], $info[1], $info[2]); Yii::trace('Saved query result in cache', 'yii\db\Command::query'); }
  • 3. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/db/Command.php at line 359 – yii\db\Command::queryInternal('fetchAll', null) 353354355356357358359360361362363364365 * @return array all rows of the query result. Each array element is an array representing a row of data. * An empty array is returned if the query results in nothing. * @throws Exception execution failed */ public function queryAll($fetchMode = null) { return $this->queryInternal('fetchAll', $fetchMode); } /** * Executes the SQL statement and returns the first row of the result. * This method is best used when only the first row of result is needed for a query. * @param integer $fetchMode the result fetch mode. Please refer to [PHP manual](http://www.php.net/manual/en/function.PDOStatement-setFetchMode.php)
  • 4. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/db/Query.php at line 206 – yii\db\Command::queryAll() 200201202203204205206207208209210211212 * @param Connection $db the database connection used to generate the SQL statement. * If this parameter is not given, the `db` application component will be used. * @return array the query results. If the query results in nothing, an empty array will be returned. */ public function all($db = null) { $rows = $this->createCommand($db)->queryAll(); return $this->populate($rows); } /** * Converts the raw query results into the format as specified by this query. * This method is internally used to convert the data fetched from database
  • 5. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/db/ActiveQuery.php at line 132 – yii\db\Query::all(null) 126127128129130131132133134135136137138 * @param Connection $db the DB connection used to create the DB command. * If null, the DB connection returned by [[modelClass]] will be used. * @return array|ActiveRecord[] the query results. If the query results in nothing, an empty array will be returned. */ public function all($db = null) { return parent::all($db); } /** * @inheritdoc */ public function prepare($builder)
  • 6. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/controllers/NewsController.php at line 113 – yii\db\ActiveQuery::all() 107108109110111112113114115116117118119 $countQuery = clone $query; $pages = new Pagination(['totalCount' => $countQuery->count()]); $models = $query->orderBy(['id' => SORT_DESC]) ->offset($pages->offset) ->limit($pages->limit) ->all(); return $this->render('tag', [ 'model' => $model, 'models' => $models, 'pages' => $pages, ]);
  • 7. app\controllers\NewsController::actionTag('ep-coc-be-tong-lang-son')
  • 8. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/base/InlineAction.php at line 55 – call_user_func_array([app\controllers\NewsController, 'actionTag'], ['ep-coc-be-tong-lang-son']) 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); } }
  • 9. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/base/Controller.php at line 151 – yii\base\InlineAction::runWithParams(['alias' => 'ep-coc-be-tong-lang-son']) 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 */
  • 10. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/base/Module.php at line 455 – yii\base\Controller::runAction('tag', ['alias' => 'ep-coc-be-tong-lang-son']) 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) . '".');
  • 11. in /home/epcocinfo/domains/epcocbetonghanoi.info/public_html/vendor/yiisoft/yii2/web/Application.php at line 84 – yii\base\Module::runAction('news/tag', ['alias' => 'ep-coc-be-tong-lang-son']) 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;
  • 12. 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();
  • 13. 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();
$_GET = [ 'alias' => 'ep-coc-be-tong-lang-son', ]; $_SERVER = [ 'REDIRECT_UNIQUE_ID' => 'aXDSynDVWGUAAGFJdQ8AAAAH', 'REDIRECT_STATUS' => '200', 'UNIQUE_ID' => 'aXDSynDVWGUAAGFJdQ8AAAAH', 'HTTP_USER_AGENT' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/604.3.5 (KHTML, like Gecko) Version/11.0.1 Safari/604.3.5', 'HTTP_HOST' => 'epcocbetonghanoi.info', 'HTTP_ACCEPT' => '*/*', 'HTTP_ACCEPT_ENCODING' => 'deflate, gzip', 'PATH' => '/usr/local/bin:/usr/bin:/bin', 'SERVER_SIGNATURE' => 'Apache/2 Server at epcocbetonghanoi.info Port 80 ', 'SERVER_SOFTWARE' => 'Apache/2', 'SERVER_NAME' => 'epcocbetonghanoi.info', 'SERVER_ADDR' => '112.213.88.101', 'SERVER_PORT' => '80', 'REMOTE_ADDR' => '103.110.85.167', 'DOCUMENT_ROOT' => '/home/epcocinfo/domains/epcocbetonghanoi.info/public_html/web', 'SERVER_ADMIN' => '[email protected]', 'SCRIPT_FILENAME' => '/home/epcocinfo/domains/epcocbetonghanoi.info/public_html/web/index.php', 'REMOTE_PORT' => '53936', 'REDIRECT_URL' => '/tag/ep-coc-be-tong-lang-son', 'GATEWAY_INTERFACE' => 'CGI/1.1', 'SERVER_PROTOCOL' => 'HTTP/1.1', 'REQUEST_METHOD' => 'GET', 'QUERY_STRING' => '', 'REQUEST_URI' => '/tag/ep-coc-be-tong-lang-son', 'SCRIPT_NAME' => '/index.php', 'PHP_SELF' => '/index.php', 'REQUEST_TIME_FLOAT' => 1769001674.8269999, 'REQUEST_TIME' => 1769001674, ]; Yii Framework

2026-01-21, 13:21:15

Apache/2

Yii Framework/2.0.6

Từ khóa » ép Cọc Bê Tông Lạng Sơn