银河galaxy网站|-首页认证

Error

PHP Noticeyii\base\ErrorException

Undefined property: stdClass::$title

  • 2. in /www/users/HA659046/WEB/themes/wap/views/layouts/main.php yii\base\ErrorHandler::handleError(8, 'Undefined property: stdClass::$t...', '/www/users/HA659046/WEB/themes/w...', 57, ...) at line 57
    51525354555657585960616263
      
    'swiper','pid'=>278,'num'=>10,]);?>
    model->title;?>
      'left','model'=>$this->model,]);?>
  • 3. in /www/users/HA659046/WEB/vendor/yiisoft/yii2/base/View.php – require('/www/users/HA659046/WEB/themes/w...') at line 325
    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 /www/users/HA659046/WEB/vendor/yiisoft/yii2/base/View.php yii\base\View::renderPhpFile('/www/users/HA659046/WEB/themes/w...', ['content' => ">'at line 247
    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 /www/users/HA659046/WEB/vendor/yiisoft/yii2/base/Controller.php yii\base\View::renderFile('/www/users/HA659046/WEB/frontend...', ['content' => ">'frontend\controllers\PageController) at line 386
    380381382383384385386387388389390391392
         * @since 2.0.1
         */
        public function renderContent($content)
        {
            $layoutFile = $this->findLayoutFile($this->getView());
            if ($layoutFile !== false) {
                return $this->getView()->renderFile($layoutFile, ['content' => $content], $this);
            } else {
                return $content;
            }
        }
     
        /**
    
  • 6. in /www/users/HA659046/WEB/vendor/yiisoft/yii2/base/Controller.php yii\base\Controller::renderContent( ">'at line 372
    366367368369370371372373374375376377378
         * @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
         * @return string the rendering result of the layout with the given static string as the `$content` variable.
    
  • 7. in /www/users/HA659046/WEB/frontend/controllers/PageController.php yii\base\Controller::render('topfot', ['model' => frontend\models\PageModel]) at line 17
    11121314151617181920
     
        public function actionCreate()
        {
            $model=PageModel::findOne(Yii::$app->request->get('id'));
            return $this->render($model->template,[
                    'model'=>$model,
                    ]);
        }
     
    }
    
  • 8. frontend\controllers\PageController::actionCreate()
  • 9. in /www/users/HA659046/WEB/vendor/yiisoft/yii2/base/InlineAction.php – call_user_func_array([frontend\controllers\PageController, 'actionCreate'], []) at line 55
    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 /www/users/HA659046/WEB/vendor/yiisoft/yii2/base/Controller.php yii\base\InlineAction::runWithParams(['id' => 53, '404_html' => '']) at line 151
    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 */
    
  • 11. in /www/users/HA659046/WEB/vendor/yiisoft/yii2/base/Module.php yii\base\Controller::runAction('create', ['id' => 53, '404_html' => '']) at line 455
    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) . '".');
    
  • 12. in /www/users/HA659046/WEB/vendor/yiisoft/yii2/web/Application.php yii\base\Module::runAction('page/create', ['id' => 53, '404_html' => '']) at line 84
    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 /www/users/HA659046/WEB/vendor/yiisoft/yii2/base/Application.php yii\web\Application::handleRequest(yii\web\Request) at line 375
    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 /www/users/HA659046/WEB/index.php yii\base\Application::run() at line 35
    29303132333435
    }
     
     
     
     
    $application = new yii\web\Application($config);
    $application->run();
  • $_GET = [
        'id' => 53,
        '404_html' => '',
    ];
    
    $_SERVER = [
        'REDIRECT_REDIRECT_UNIQUE_ID' => 'Zbvxdn8AAAEAABPPRWYAAAAF',
        'REDIRECT_REDIRECT_SCRIPT_URL' => '/404.html',
        'REDIRECT_REDIRECT_SCRIPT_URI' => '/404.html',
        'REDIRECT_REDIRECT_STATUS' => '200',
        'REDIRECT_UNIQUE_ID' => 'Zbvxdn8AAAEAABPPRWYAAAAF',
        'REDIRECT_SCRIPT_URL' => '/404.html',
        'REDIRECT_SCRIPT_URI' => '/404.html',
        'REDIRECT_HANDLER' => 'application/x-httpd-php5',
        'REDIRECT_STATUS' => '200',
        'UNIQUE_ID' => 'Zbvxdn8AAAEAABPPRWYAAAAF',
        'SCRIPT_URL' => '/404.html',
        'SCRIPT_URI' => '/404.html',
        'HTTP_USER_AGENT' => 'Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)',
        'HTTP_HOST' => 'www.haojqsb.com',
        'HTTP_ACCEPT' => '*/*',
        'HTTP_ACCEPT_ENCODING' => 'gzip',
        'HTTP_COOKIE' => '_csrf=6702480cebef1ed954834aeec99d4222165cae616a4b83a1a0ebcea4a0c4974da%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%226JFjKZ4bqf4GMGUEa-pADeAtWBdIyBXW%22%3B%7D; security_session_verify=79b490fe58bc8b046b3aba4136d9cd23',
        'PATH' => '/usr/bin:/bin',
        'SERVER_SIGNATURE' => '',
        'SERVER_SOFTWARE' => 'Apache',
        'SERVER_NAME' => 'www.haojqsb.com',
        'SERVER_ADDR' => '122.114.118.118',
        'SERVER_PORT' => '80',
        'REMOTE_ADDR' => '23.27.213.18',
        'DOCUMENT_ROOT' => '/www/users/HA659046/WEB',
        'SERVER_ADMIN' => 'vhost@zzidc.com',
        'SCRIPT_FILENAME' => '/www/users/HA659046/WEB/index.php',
        'REMOTE_PORT' => '42876',
        'REDIRECT_QUERY_STRING' => '404.html',
        'REDIRECT_URL' => '/index.php',
        'GATEWAY_INTERFACE' => 'CGI/1.1',
        'SERVER_PROTOCOL' => 'HTTP/1.1',
        'REQUEST_METHOD' => 'GET',
        'QUERY_STRING' => '404.html',
        'REQUEST_URI' => '/404.html',
        'SCRIPT_NAME' => '/index.php',
        'ORIG_SCRIPT_FILENAME' => '/usr/local/zend/php5.6/bin/php-cgi',
        'ORIG_PATH_INFO' => '/index.php',
        'ORIG_PATH_TRANSLATED' => '/www/users/HA659046/WEB/index.php',
        'ORIG_SCRIPT_NAME' => '/php56-cgi',
        'PHP_SELF' => '/index.php',
        'REQUEST_TIME_FLOAT' => 1706815862.701978,
        'REQUEST_TIME' => 1706815862,
    ];
    
    $_COOKIE = [
        '_csrf' => '6702480cebef1ed954834aeec99d4222165cae616a4b83a1a0ebcea4a0c4974da:2:{i:0;s:5:"_csrf";i:1;s:32:"6JFjKZ4bqf4GMGUEa-pADeAtWBdIyBXW";}',
        'security_session_verify' => '79b490fe58bc8b046b3aba4136d9cd23',
    ];