Kulayisha

Slzii.com Kufuna

https://airport.tj

Unknown Property – yii\base\UnknownPropertyException
Unknown Property – yii\base\UnknownPropertyException Unknown Property – yii\base\UnknownPropertyException Getting unknown property: app\models\Article::title_en-US 1. in /home/c/cy30514/airport.tj/public_html/vendor/yiisoft/yii2/base/Component.php at line 143 134135136137138139140141142143144145146147148149150151152 foreach ($this->_behaviors as $behavior) { if ($behavior->canGetProperty($name)) { return $behavior->$name; } } } if (method_exists($this, 'set' . $name)) { throw new InvalidCallException('Getting write-only property: ' . get_class($this) . '::' . $name); } else { throw new UnknownPropertyException('Getting unknown property: ' . get_class($this) . '::' . $name); } } /** * Sets the value of a component property. * This method will check in the following order and act accordingly: * * - a property defined by a setter: set the property value * - an event in the format of "on xyz": attach the handler to the event "xyz" 2. in /home/c/cy30514/airport.tj/public_html/vendor/yiisoft/yii2/db/BaseActiveRecord.php – yii\base\Component::__get('title_en-US') at line 246 240241242243244245246247248249250251252 } elseif ($this->hasAttribute($name)) { return null; } else { if (isset($this->_related[$name]) || array_key_exists($name, $this->_related)) { return $this->_related[$name]; } $value = parent::__get($name); if ($value instanceof ActiveQueryInterface) { return $this->_related[$name] = $value->findFor($name, $this); } else { return $value; } } 3. in /home/c/cy30514/airport.tj/public_html/app/models/Article.php – yii\db\BaseActiveRecord::__get('title_en-US') at line 71 65666768697071727374757677 'status' => 'Status', ]; } public function getTitle() { return $this->{'title_' . Yii::$app->language}; } public function getContent() { return $this->{'content_' . Yii::$app->language}; } 4. in /home/c/cy30514/airport.tj/public_html/app/views/site/index.php – app\models\Article::getTitle() at line 203 197198199200201202203204205206207208209 $articles = \app\models\Article::find()->where(['category_id'=>$cat->id])->limit(4)->orderBy("id DESC")->all(); foreach($articles as $article) { ?>
  • getTitle();?>
  • 5. in /home/c/cy30514/airport.tj/public_html/vendor/yiisoft/yii2/base/View.php – require('/home/c/cy30514/airport.tj/publi...') 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. 6. in /home/c/cy30514/airport.tj/public_html/vendor/yiisoft/yii2/base/View.php – yii\base\View::renderPhpFile('/home/c/cy30514/airport.tj/publi...', []) 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; 7. in /home/c/cy30514/airport.tj/public_html/vendor/yiisoft/yii2/base/View.php – yii\base\View::renderFile('/home/c/cy30514/airport.tj/publi...', [], app\controllers\SiteController) 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. 8. in /home/c/cy30514/airport.tj/public_html/vendor/yiisoft/yii2/base/Controller.php – yii\base\View::render('index', [], app\controllers\SiteController) 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 9. in /home/c/cy30514/airport.tj/public_html/app/controllers/SiteController.php – yii\base\Controller::render('index') at line 41 35363738394041424344454647 ], ]; } public function actionIndex() { return $this->render('index'); } public function actionSearch($q) { $articles = Article::find()->where(['like', 'content_' . Yii::$app->language, $q])->all(); 10. app\controllers\SiteController::actionIndex() 11. in /home/c/cy30514/airport.tj/public_html/vendor/yiisoft/yii2/base/InlineAction.php – call_user_func_array([app\controllers\SiteController, 'actionIndex'], []) 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); } } 12. in /home/c/cy30514/airport.tj/public_html/vendor/yiisoft/yii2/base/Controller.php – yii\base\InlineAction::runWithParams([]) 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 */ 13. in /home/c/cy30514/airport.tj/public_html/vendor/yiisoft/yii2/base/Module.php – yii\base\Controller::runAction('', []) 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) . '".'); 14. in /home/c/cy30514/airport.tj/public_html/vendor/yiisoft/yii2/web/Application.php – yii\base\Module::runAction('', []) 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; 15. in /home/c/cy30514/airport.tj/public_html/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(); 16. in /home/c/cy30514/airport.tj/public_html/index.php – yii\base\Application::run() at line 15 9101112131415 require(__DIR__ . '/vendor/autoload.php'); require(__DIR__ . '/vendor/yiisoft/yii2/Yii.php'); $config = require(__DIR__ . '/app/config/web.php'); (new yii\web\Application($config))->run(); $_SERVER = [ 'HTTPS' => 'On', 'HTTP_HOST' => 'airport.tj', 'HTTP_X_HTTPS' => '1', 'HTTP_X_FORWARDED_PROTO' => 'https', 'HTTP_CONNECTION' => 'close', 'HTTP_USER_AGENT' => 'Slzii.com - Search Bot (https://www.slzii.com/search_bot)', 'HTTP_ACCEPT' => '*/*', 'HTTP_ACCEPT_ENCODING' => 'deflate, gzip, br, zstd', 'PATH' => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin', 'SERVER_SIGNATURE' => '', 'SERVER_SOFTWARE' => 'Apache/2.4.29', 'SERVER_NAME' => 'airport.tj', 'SERVER_ADDR' => '127.0.0.1', 'SERVER_PORT' => '80', 'REMOTE_ADDR' => '66.70.179.16', 'DOCUMENT_ROOT' => '/home/c/cy30514/airport.tj/public_html', 'REQUEST_SCHEME' => 'http', 'CONTEXT_PREFIX' => '', 'CONTEXT_DOCUMENT_ROOT' => '/home/c/cy30514/airport.tj/public_html', 'SERVER_ADMIN' => 'info@timeweb.ru', 'SCRIPT_FILENAME' => '/home/c/cy30514/airport.tj/public_html/index.php', 'REMOTE_PORT' => '45078', 'GATEWAY_INTERFACE' => 'CGI/1.1', 'SERVER_PROTOCOL' => 'HTTP/1.0', 'REQUEST_METHOD' => 'GET', 'QUERY_STRING' => '', 'REQUEST_URI' => '/', 'SCRIPT_NAME' => '/index.php', 'PHP_SELF' => '/index.php', 'REQUEST_TIME_FLOAT' => 1726605484.5079999, 'REQUEST_TIME' => 1726605484, 'argv' => [], 'argc' => 0, ]; $_SESSION = [ '__flash' => [], ]; $_ENV = [ 'APACHE_CONFDIR' => '/etc/apache2-56', 'APACHE_RUN_DIR' => '/var/run/apache2-56', 'APACHE_PID_FILE' => '/var/run/apache2-56/apache2.pid', 'JOURNAL_STREAM' => '9:1803294652', 'PATH' => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin', 'INVOCATION_ID' => 'fc36272321c54fb184a1485d28fe806c', 'APACHE_LOCK_DIR' => '/var/lock/apache2-56', 'LANG' => 'C', 'APACHE_RUN_USER' => 'www-data', 'APACHE_RUN_GROUP' => 'www-data', 'APACHE_LOG_DIR' => '/var/log/apache2-56', 'PWD' => '/', ]; 2024-09-18, 01:38:04 Apache/2.4.29 Yii Framework/2.0.4
    en
    en
    1727235601
    https://airport.tj

    Hlela isayithi yakho?

    Wentani?

    0.006011962890625


    I-Webdirectory
    I-Webdirectory

    I-Webdirectory
    Unknown Property – yii\base\UnknownPropertyException
    I-Webdirectory