Trục Cơ Xe Tải - Phụ Tùng Ô Tô Hải Diệu
Có thể bạn quan tâm
Trying to get property of non-object
- 1. in /home/phut8151/public_html/frontend/giaodien/flipmart/views/site/chitietsanpham.php at line 14 567891011121314151617181920212223 /** * Created by PhpStorm. * User: Administrator * Date: 8/9/2017 * Time: 10:46 PM * @var $sanpham \common\models\Sanpham */ use yii\helpers\Url; use yii\helpers\Html; $this->title = $sanpham->title; $this->registerMetaTag(['name' => 'description', 'content' => $sanpham->description]); $this->registerMetaTag(['name' => 'og:url', 'content' => Url::toRoute(['site/sp', 'path' => $sanpham->code])]); $this->registerMetaTag(['name' => 'og:type', 'content' => "website"]); $this->registerMetaTag(['name' => 'og:title', 'content' => $sanpham->name]); $this->registerMetaTag(['name' => 'og:description', 'content' => $sanpham->description]); $this->registerMetaTag(['name' => 'og:image', 'content' => "/images/".$sanpham->anhdaidien]); ?> <?php
- 2. in /home/phut8151/public_html/frontend/giaodien/flipmart/views/site/chitietsanpham.php at line 14 – yii\base\ErrorHandler::handleError(8, 'Trying to get property of non-ob...', '/home/phut8151/public_html/front...', 14, ...) 891011121314151617181920 * Date: 8/9/2017 * Time: 10:46 PM * @var $sanpham \common\models\Sanpham */ use yii\helpers\Url; use yii\helpers\Html; $this->title = $sanpham->title; $this->registerMetaTag(['name' => 'description', 'content' => $sanpham->description]); $this->registerMetaTag(['name' => 'og:url', 'content' => Url::toRoute(['site/sp', 'path' => $sanpham->code])]); $this->registerMetaTag(['name' => 'og:type', 'content' => "website"]); $this->registerMetaTag(['name' => 'og:title', 'content' => $sanpham->name]); $this->registerMetaTag(['name' => 'og:description', 'content' => $sanpham->description]); $this->registerMetaTag(['name' => 'og:image', 'content' => "/images/".$sanpham->anhdaidien]);
- 3. in /home/phut8151/public_html/vendor/yiisoft/yii2/base/View.php at line 325 – require('/home/phut8151/public_html/front...') 319320321322323324325326327328329330331 */ public function renderPhpFile($_file_, $_params_ = []) { ob_start(); ob_implicit_flush(false); extract($_params_, EXTR_OVERWRITE); require($_file_); return ob_get_clean(); } /** * Renders dynamic content returned by the given PHP statements.
- 4. in /home/phut8151/public_html/vendor/yiisoft/yii2/base/View.php at line 247 – yii\base\View::renderPhpFile('/home/phut8151/public_html/front...', ['sanpham' => null]) 241242243244245246247248249250251252253 $this->renderers[$ext] = Yii::createObject($this->renderers[$ext]); } /* @var $renderer ViewRenderer */ $renderer = $this->renderers[$ext]; $output = $renderer->render($this, $viewFile, $params); } else { $output = $this->renderPhpFile($viewFile, $params); } $this->afterRender($viewFile, $params, $output); } array_pop($this->_viewFiles); $this->context = $oldContext;
- 5. in /home/phut8151/public_html/vendor/yiisoft/yii2/base/View.php at line 149 – yii\base\View::renderFile('/home/phut8151/public_html/front...', ['sanpham' => null], frontend\controllers\SiteController) 143144145146147148149150151152153154155 * @throws InvalidParamException if the view cannot be resolved or the view file does not exist. * @see renderFile() */ public function render($view, $params = [], $context = null) { $viewFile = $this->findViewFile($view, $context); return $this->renderFile($viewFile, $params, $context); } /** * Finds the view file based on the given view name. * @param string $view the view name or the path alias of the view file. Please refer to [[render()]] * on how to specify this parameter.
- 6. in /home/phut8151/public_html/vendor/yiisoft/yii2/base/Controller.php at line 378 – yii\base\View::render('chitietsanpham', ['sanpham' => null], frontend\controllers\SiteController) 372373374375376377378379380381382383384 * These parameters will not be available in the layout. * @return string the rendering result. * @throws InvalidParamException if the view file or the layout file does not exist. */ public function render($view, $params = []) { $content = $this->getView()->render($view, $params, $this); return $this->renderContent($content); } /** * Renders a static string by applying a layout. * @param string $content the static string being rendered
- 7. in /home/phut8151/public_html/frontend/controllers/SiteController.php at line 176 – yii\base\Controller::render('chitietsanpham', ['sanpham' => null]) 170171172173174175176177178179180181182 ]); } public function actionSp($path){ $sanpham = Sanpham::findOne(['code' => $path]); return $this->render('chitietsanpham', [ 'sanpham' => $sanpham, ]); } public function actionT($path){ $danhsachbaiviet = Danhmucbaiviet::findOne(['code' => $path]); $baiviet = Baiviet::find()->where(['danhmucbaiviet_id' => $danhsachbaiviet->id]); $pagination = new Pagination([ 'defaultPageSize' => 10,
- 8. frontend\controllers\SiteController::actionSp('truc-co-xe-tai')
- 9. in /home/phut8151/public_html/vendor/yiisoft/yii2/base/InlineAction.php at line 55 – call_user_func_array([frontend\controllers\SiteController, 'actionSp'], ['truc-co-xe-tai']) 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); } }
- 10. in /home/phut8151/public_html/vendor/yiisoft/yii2/base/Controller.php at line 154 – yii\base\InlineAction::runWithParams(['path' => 'truc-co-xe-tai', 'truc-co-xe-tai-sp_html' => '']) 148149150151152153154155156157158159160 } $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 */
- 11. in /home/phut8151/public_html/vendor/yiisoft/yii2/base/Module.php at line 454 – yii\base\Controller::runAction('sp', ['path' => 'truc-co-xe-tai', 'truc-co-xe-tai-sp_html' => '']) 448449450451452453454455456457458459460 $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) . '".');
- 12. in /home/phut8151/public_html/vendor/yiisoft/yii2/web/Application.php at line 84 – yii\base\Module::runAction('site/sp', ['path' => 'truc-co-xe-tai', 'truc-co-xe-tai-sp_html' => '']) 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;
- 13. in /home/phut8151/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();
- 14. in /home/phut8151/public_html/index.php at line 20 – yii\base\Application::run() 14151617181920 require(__DIR__ . '/frontend/config/main-local.php') ); header("Cache-Control: no cache"); session_cache_limiter("private_no_expire"); (new yii\web\Application($config))->run();
2026-01-26, 06:55:46
Yii Framework/2.0.8
Từ khóa » Trục Cơ Xe Tải
-
Trục Cơ Xe Tải Dongfeng Hoàng Huy | Phụ Tùng động Cơ Xe Tải
-
Trục Cơ Xe Dongfeng, Trục Cơ Xe Dongffeng Hoàng Huy - Phụ Tùng Xe Tải
-
Bán Trục Cơ Xe Tải - Công Ty Ô Tô Bảo Ngọc
-
Trục Cơ , Trục Khuỷu Xe Tải Dongfeng - Mooc-.vn
-
TRỤC CƠ/TRỤC KHUỶU XE CỬU LONG
-
Bánh Răng, Hộp Số, Trục Cơ Các Loại Xe Tải
-
Bán Trục Cơ Xe Tải Trường Giang
-
Xe Tải 3 Trục Là Gì? Ưu điểm Của Dòng Xe Tải 3 Trục - Xe Tải Vĩnh Phát
-
Nơi Bán Trục Cơ Xe Giá Rẻ, Uy Tín, Chất Lượng Nhất - Websosanh
-
Trục Cơ Xe Faw, Dongfeng, Howo, Jac, CamC, Cửu Long...
-
Bán Trục Cơ Xe Howo 371, 375, 420 Chính Hãng
-
Trục Cơ Xe Tải Kia K2700 - Phụ Tùng Ô Tô Đà Nẵng
-
Trục Cơ Hyundai Porter 2 Máy Cơ - Phụ Tùng ô Tô NEK