1e9821101b.nxcli.io Open in urlscan Pro
173.249.147.218  Public Scan

URL: https://1e9821101b.nxcli.io/account/index.html
Submission: On September 02 via api from TW — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

yii\web\NotFoundHttpException: Template not found: account/index.html in
/chroot/home/a8484624/1e9821101b.nxcli.io/vendor/craftcms/cms/src/controllers/TemplatesController.php:97
Stack trace: #0 [internal function]:
craft\controllers\TemplatesController->actionRender('account/index.h...', Array)
#1
/chroot/home/a8484624/1e9821101b.nxcli.io/vendor/yiisoft/yii2/base/InlineAction.php(57):
call_user_func_array(Array, Array) #2
/chroot/home/a8484624/1e9821101b.nxcli.io/vendor/yiisoft/yii2/base/Controller.php(178):
yii\base\InlineAction->runWithParams(Array) #3
/chroot/home/a8484624/1e9821101b.nxcli.io/vendor/yiisoft/yii2/base/Module.php(552):
yii\base\Controller->runAction('render', Array) #4
/chroot/home/a8484624/1e9821101b.nxcli.io/vendor/craftcms/cms/src/web/Application.php(301):
yii\base\Module->runAction('templates/rende...', Array) #5
/chroot/home/a8484624/1e9821101b.nxcli.io/vendor/yiisoft/yii2/web/Application.php(103):
craft\web\Application->runAction('templates/rende...', Array) #6
/chroot/home/a8484624/1e9821101b.nxcli.io/vendor/craftcms/cms/src/web/Application.php(286):
yii\web\Application->handleRequest(Object(craft\web\Request)) #7
/chroot/home/a8484624/1e9821101b.nxcli.io/vendor/yiisoft/yii2/base/Application.php(384):
craft\web\Application->handleRequest(Object(craft\web\Request)) #8
/chroot/home/a8484624/1e9821101b.nxcli.io/web/index.php(12):
yii\base\Application->run() #9 {main} Copied!


HTTP 404 – NOT FOUND – YII\WEB\NOTFOUNDHTTPEXCEPTION


TEMPLATE NOT FOUND: ACCOUNT/INDEX.HTML

 * 1. in
   /chroot/home/a8484624/1e9821101b.nxcli.io/vendor/craftcms/cms/src/controllers/TemplatesController.php
   at line 97
   888990919293949596979899100101102103104105106
   
           // 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
           /** @var Application $app */
           $app = Craft::$app;
           $routeParams = $app->getUrlManager()->getRouteParams();
           unset($routeParams['template'], $routeParams['template']);
           $variables = array_merge($variables, $routeParams);
    
   

 * 2. craft\controllers\TemplatesController::actionRender('account/index.html',
   [])
 * 3. in
   /chroot/home/a8484624/1e9821101b.nxcli.io/vendor/yiisoft/yii2/base/InlineAction.php
   at line 57 – call_user_func_array([craft\controllers\TemplatesController,
   'actionRender'], ['account/index.html', []])
   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
   /chroot/home/a8484624/1e9821101b.nxcli.io/vendor/yiisoft/yii2/base/Controller.php
   at line 178 – yii\base\InlineAction::runWithParams(['template' =>
   'account/index.html', 'p' => 'account/index.html'])
   172173174175176177178179180181182183184
   
           }
    
           $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
   /chroot/home/a8484624/1e9821101b.nxcli.io/vendor/yiisoft/yii2/base/Module.php
   at line 552 – yii\base\Controller::runAction('render', ['template' =>
   'account/index.html', 'p' => 'account/index.html'])
   546547548549550551552553554555556557558
   
           $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
   /chroot/home/a8484624/1e9821101b.nxcli.io/vendor/craftcms/cms/src/web/Application.php
   at line 301 – yii\base\Module::runAction('templates/render', ['template' =>
   'account/index.html', 'p' => 'account/index.html'])
   295296297298299300301302303304305306307
   
        * @param string $route
        * @param array $params
        * @return Response|null The result of the action, normalized into a Response object
        */
       public function runAction($route, $params = []): ?BaseResponse
       {
           $result = parent::runAction($route, $params);
    
           if ($result === null || $result instanceof Response) {
               return $result;
           }
    
           $response = $this->getResponse();
   

 * 7. in
   /chroot/home/a8484624/1e9821101b.nxcli.io/vendor/yiisoft/yii2/web/Application.php
   at line 103 – craft\web\Application::runAction('templates/render',
   ['template' => 'account/index.html', 'p' => 'account/index.html'])
   979899100101102103104105106107108109
   
               $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
   /chroot/home/a8484624/1e9821101b.nxcli.io/vendor/craftcms/cms/src/web/Application.php
   at line 286 – yii\web\Application::handleRequest(craft\web\Request)
   280281282283284285286287288289290291292
   
           if (($response = $this->_processActionRequest($request)) !== null) {
               return $response;
           }
    
           // If we’re still here, finally let Yii do its thing.
           try {
               return parent::handleRequest($request);
           } catch (Throwable $e) {
               $this->_unregisterDebugModule();
               throw $e;
           }
       }
    
   

 * 9. in
   /chroot/home/a8484624/1e9821101b.nxcli.io/vendor/yiisoft/yii2/base/Application.php
   at line 384 – craft\web\Application::handleRequest(craft\web\Request)
   378379380381382383384385386387388389390
   
       {
           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 /chroot/home/a8484624/1e9821101b.nxcli.io/web/index.php at line 12 –
   yii\base\Application::run()
   6789101112
   
   // Load shared bootstrap
   require dirname(__DIR__) . '/bootstrap.php';
    
   // Load and run Craft
   /** @var craft\web\Application $app */
   $app = require CRAFT_VENDOR_PATH . '/craftcms/cms/bootstrap/web.php';
   $app->run();
   

$_GET = [
    'p' => 'account/index.html',
];

2024-09-01, 21:11:51

Apache

Yii Framework/2.0.46