easinatolpovo.tk Open in urlscan Pro
2606:4700:3030::ac43:bf2a  Public Scan

URL: https://easinatolpovo.tk/login.php
Submission Tags: krdtest
Submission: On March 11 via api from JP — Scanned from JP

Form analysis 0 forms found in the DOM

Text Content

yii\web\NotFoundHttpException: Template not found: login.php in
/var/www/craft/vendor/craftcms/cms/src/controllers/TemplatesController.php:94
Stack trace: #0 [internal function]:
craft\controllers\TemplatesController->actionRender() #1
/var/www/craft/vendor/yiisoft/yii2/base/InlineAction.php(57):
call_user_func_array() #2
/var/www/craft/vendor/yiisoft/yii2/base/Controller.php(181):
yii\base\InlineAction->runWithParams() #3
/var/www/craft/vendor/yiisoft/yii2/base/Module.php(534):
yii\base\Controller->runAction() #4
/var/www/craft/vendor/craftcms/cms/src/web/Application.php(287):
yii\base\Module->runAction() #5
/var/www/craft/vendor/yiisoft/yii2/web/Application.php(104):
craft\web\Application->runAction() #6
/var/www/craft/vendor/craftcms/cms/src/web/Application.php(272):
yii\web\Application->handleRequest() #7
/var/www/craft/vendor/yiisoft/yii2/base/Application.php(392):
craft\web\Application->handleRequest() #8 /var/www/craft/web/index.php(22):
yii\base\Application->run() #9 {main} Copied!


HTTP 404 – NOT FOUND – YII\WEB\NOTFOUNDHTTPEXCEPTION


TEMPLATE NOT FOUND: LOGIN.PHP

 * 1. in
   /var/www/craft/vendor/craftcms/cms/src/controllers/TemplatesController.php at
   line 94
   858687888990919293949596979899100101102103
   
           // Does that template exist?
           if (
               (
                   Craft::$app->getConfig()->getGeneral()->headlessMode &&
                   $this->request->getIsSiteRequest()
               ) ||
               !Path::ensurePathIsContained($template) || // avoid the Craft::warning() from View::_validateTemplateName()
               !$this->getView()->doesTemplateExist($template)
           ) {
               throw new NotFoundHttpException('Template not found: ' . $template);
           }
    
           // Merge any additional route params
           $routeParams = Craft::$app->getUrlManager()->getRouteParams();
           unset($routeParams['template'], $routeParams['template']);
           $variables = array_merge($variables, $routeParams);
    
           return $this->renderTemplate($template, $variables);
       }
   

 * 2. craft\controllers\TemplatesController::actionRender()
 * 3. in /var/www/craft/vendor/yiisoft/yii2/base/InlineAction.php at line 57 –
   call_user_func_array()
   515253545556575859
   
           $args = $this->controller->bindActionParams($this, $params);
           Yii::debug('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);
       }
   }
   

 * 4. in /var/www/craft/vendor/yiisoft/yii2/base/Controller.php at line 181 –
   yii\base\InlineAction::runWithParams()
   175176177178179180181182183184185186187
   
           }
    
           $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 */
   

 * 5. in /var/www/craft/vendor/yiisoft/yii2/base/Module.php at line 534 –
   yii\base\Controller::runAction()
   528529530531532533534535536537538539540
   
           $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);
               if ($oldController !== null) {
                   Yii::$app->controller = $oldController;
               }
    
               return $result;
           }
   

 * 6. in /var/www/craft/vendor/craftcms/cms/src/web/Application.php at line 287
   – yii\base\Module::runAction()
   281282283284285286287288289290291292293
   
        * @param string $route
        * @param array $params
        * @return Response|null The result of the action, normalized into a Response object
        */
       public function runAction($route, $params = [])
       {
           $result = parent::runAction($route, $params);
    
           if ($result !== null) {
               if ($result instanceof Response) {
                   return $result;
               }
    
   

 * 7. in /var/www/craft/vendor/yiisoft/yii2/web/Application.php at line 104 –
   craft\web\Application::runAction()
   9899100101102103104105106107108109110
   
               $params = $this->catchAll;
               unset($params[0]);
           }
           try {
               Yii::debug("Route requested: '$route'", __METHOD__);
               $this->requestedRoute = $route;
               $result = $this->runAction($route, $params);
               if ($result instanceof Response) {
                   return $result;
               }
    
               $response = $this->getResponse();
               if ($result !== null) {
   

 * 8. in /var/www/craft/vendor/craftcms/cms/src/web/Application.php at line 272
   – yii\web\Application::handleRequest()
   266267268269270271272273274275276277278
   
           if (($response = $this->_processActionRequest($request)) !== null) {
               return $response;
           }
    
           // If we're still here, finally let Yii do it's thing.
           try {
               return parent::handleRequest($request);
           } catch (\Throwable $e) {
               $this->_unregisterDebugModule();
               throw $e;
           }
       }
    
   

 * 9. in /var/www/craft/vendor/yiisoft/yii2/base/Application.php at line 392 –
   craft\web\Application::handleRequest()
   386387388389390391392393394395396397398
   
       {
           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();
   

 * 10. in /var/www/craft/web/index.php at line 22 – yii\base\Application::run()
   16171819202122
   
   }
    
   // Load and run Craft
   define('CRAFT_ENVIRONMENT', getenv('ENVIRONMENT') ?: 'production');
   /** @var craft\web\Application $app */
   $app = require CRAFT_VENDOR_PATH.'/craftcms/cms/bootstrap/web.php';
   $app->run();
   



2022-03-10, 21:12:16

nginx/1.21.4

Yii Framework/2.0.43