澳门沙金电子游戏(中国)有限公司 - 百度百科

Exception

Unknown Propertyyii\base\UnknownPropertyException

Getting unknown property: frontend\models\PageModel::model

  • 6. in /www/users/HA659053/WEB/vendor/yiisoft/yii2/base/View.php – require('/www/users/HA659053/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.
    
  • 7. in /www/users/HA659053/WEB/vendor/yiisoft/yii2/base/View.php yii\base\View::renderPhpFile('/www/users/HA659053/WEB/themes/w...', ['model' => frontend\models\PageModel]) 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;
    
  • 8. in /www/users/HA659053/WEB/vendor/yiisoft/yii2/base/View.php yii\base\View::renderFile('/www/users/HA659053/WEB/frontend...', ['model' => frontend\models\PageModel], frontend\controllers\PageController) at line 149
    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.
    
  • 9. in /www/users/HA659053/WEB/vendor/yiisoft/yii2/base/Controller.php yii\base\View::render('common', ['model' => frontend\models\PageModel], frontend\controllers\PageController) at line 371
    365366367368369370371372373374375376377
         * 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
    
  • 11. frontend\controllers\PageController::actionCreate()
  • 12. in /www/users/HA659053/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);
        }
    }
    
  • 13. in /www/users/HA659053/WEB/vendor/yiisoft/yii2/base/Controller.php yii\base\InlineAction::runWithParams(['id' => 113, 'xxdgj/' => '']) 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 */
    
  • 14. in /www/users/HA659053/WEB/vendor/yiisoft/yii2/base/Module.php yii\base\Controller::runAction('create', ['id' => 113, 'xxdgj/' => '']) 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) . '".');
    
  • 15. in /www/users/HA659053/WEB/vendor/yiisoft/yii2/web/Application.php yii\base\Module::runAction('page/create', ['id' => 113, 'xxdgj/' => '']) 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;
    
  • 16. in /www/users/HA659053/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();
    
  • 17. in /www/users/HA659053/WEB/index.php yii\base\Application::run() at line 33
    27282930313233
    			require(__DIR__ . '/frontend/config/main-local.php')
    	);
     
     
    }
    $application = new yii\web\Application($config);
    $application->run();
  • $_GET = [
        'id' => 113,
        'xxdgj/' => '',
    ];
    
    $_SERVER = [
        'REDIRECT_REDIRECT_UNIQUE_ID' => 'ZWoWO38AAAEAACi7IhEAAAAA',
        'REDIRECT_REDIRECT_SCRIPT_URL' => '/xxdgj/',
        'REDIRECT_REDIRECT_SCRIPT_URI' => '/xxdgj/',
        'REDIRECT_REDIRECT_STATUS' => '200',
        'REDIRECT_UNIQUE_ID' => 'ZWoWO38AAAEAACi7IhEAAAAA',
        'REDIRECT_SCRIPT_URL' => '/xxdgj/',
        'REDIRECT_SCRIPT_URI' => '/xxdgj/',
        'REDIRECT_HANDLER' => 'application/x-httpd-php5',
        'REDIRECT_STATUS' => '200',
        'UNIQUE_ID' => 'ZWoWO38AAAEAACi7IhEAAAAA',
        'SCRIPT_URL' => '/xxdgj/',
        'SCRIPT_URI' => '/xxdgj/',
        'HTTP_USER_AGENT' => 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.123 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',
        'HTTP_HOST' => 'www.zt-kf.com',
        'HTTP_ACCEPT' => '*/*',
        'HTTP_ACCEPT_ENCODING' => 'gzip',
        'HTTP_COOKIE' => 'security_session_verify=5f11fc6ed1fcae6f6f837e2b550a5d0b',
        'PATH' => '/usr/bin:/bin',
        'SERVER_SIGNATURE' => '',
        'SERVER_SOFTWARE' => 'Apache',
        'SERVER_NAME' => 'www.zt-kf.com',
        'SERVER_ADDR' => '116.255.151.186',
        'SERVER_PORT' => '80',
        'REMOTE_ADDR' => '50.3.173.110',
        'DOCUMENT_ROOT' => '/www/users/HA659053/WEB',
        'SERVER_ADMIN' => 'vhost@zzidc.com',
        'SCRIPT_FILENAME' => '/www/users/HA659053/WEB/index.php',
        'REMOTE_PORT' => '38960',
        'REDIRECT_QUERY_STRING' => 'xxdgj/',
        'REDIRECT_URL' => '/index.php',
        'GATEWAY_INTERFACE' => 'CGI/1.1',
        'SERVER_PROTOCOL' => 'HTTP/1.1',
        'REQUEST_METHOD' => 'GET',
        'QUERY_STRING' => 'xxdgj/',
        'REQUEST_URI' => '/xxdgj/',
        'SCRIPT_NAME' => '/index.php',
        'ORIG_SCRIPT_FILENAME' => '/usr/local/zend/php5.4/bin/php-cgi',
        'ORIG_PATH_INFO' => '/index.php',
        'ORIG_PATH_TRANSLATED' => '/www/users/HA659053/WEB/index.php',
        'ORIG_SCRIPT_NAME' => '/php54-cgi',
        'PHP_SELF' => '/index.php',
        'REQUEST_TIME_FLOAT' => 1701451323.4572389,
        'REQUEST_TIME' => 1701451323,
    ];
    
    $_COOKIE = [
        'security_session_verify' => '5f11fc6ed1fcae6f6f837e2b550a5d0b',
    ];