au.netlogixgroup.com Open in urlscan Pro
13.210.171.104  Public Scan

URL: https://au.netlogixgroup.com/login.php
Submission Tags: krdtest
Submission: On December 15 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/netlogix/vendor/craftcms/cms/src/controllers/TemplatesController.php:94
Stack trace: #0 [internal function]:
craft\controllers\TemplatesController->actionRender('login.php', Array) #1
/var/www/netlogix/vendor/yiisoft/yii2/base/InlineAction.php(57):
call_user_func_array(Array, Array) #2
/var/www/netlogix/vendor/yiisoft/yii2/base/Controller.php(181):
yii\base\InlineAction->runWithParams(Array) #3
/var/www/netlogix/vendor/yiisoft/yii2/base/Module.php(534):
yii\base\Controller->runAction('render', Array) #4
/var/www/netlogix/vendor/craftcms/cms/src/web/Application.php(287):
yii\base\Module->runAction('templates/rende...', Array) #5
/var/www/netlogix/vendor/yiisoft/yii2/web/Application.php(104):
craft\web\Application->runAction('templates/rende...', Array) #6
/var/www/netlogix/vendor/craftcms/cms/src/web/Application.php(272):
yii\web\Application->handleRequest(Object(craft\web\Request)) #7
/var/www/netlogix/vendor/yiisoft/yii2/base/Application.php(392):
craft\web\Application->handleRequest(Object(craft\web\Request)) #8
/var/www/netlogix/web/index.php(27): yii\base\Application->run() #9 {main}
Copied!


HTTP 404 – NOT FOUND – YII\WEB\NOTFOUNDHTTPEXCEPTION


TEMPLATE NOT FOUND: LOGIN.PHP

 * 1. in
   /var/www/netlogix/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('login.php', [])
 * 3. in /var/www/netlogix/vendor/yiisoft/yii2/base/InlineAction.php at line 57
   – call_user_func_array([craft\controllers\TemplatesController,
   'actionRender'], ['login.php', []])
   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/netlogix/vendor/yiisoft/yii2/base/Controller.php at line 181 –
   yii\base\InlineAction::runWithParams(['template' => 'login.php', 'p' =>
   'login.php'])
   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/netlogix/vendor/yiisoft/yii2/base/Module.php at line 534 –
   yii\base\Controller::runAction('render', ['template' => 'login.php', 'p' =>
   'login.php'])
   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/netlogix/vendor/craftcms/cms/src/web/Application.php at line
   287 – yii\base\Module::runAction('templates/render', ['template' =>
   'login.php', 'p' => 'login.php'])
   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/netlogix/vendor/yiisoft/yii2/web/Application.php at line 104 –
   craft\web\Application::runAction('templates/render', ['template' =>
   'login.php', 'p' => 'login.php'])
   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/netlogix/vendor/craftcms/cms/src/web/Application.php at line
   272 – yii\web\Application::handleRequest(craft\web\Request)
   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/netlogix/vendor/yiisoft/yii2/base/Application.php at line 392
   – craft\web\Application::handleRequest(craft\web\Request)
   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/netlogix/web/index.php at line 27 –
   yii\base\Application::run()
   21222324252627
   
   define('CRAFT_ENVIRONMENT', getenv('ENVIRONMENT') ?: 'production');
   // ...
    
   // Load and run Craft
   /** @var craft\web\Application $app */
   $app = require CRAFT_VENDOR_PATH . '/craftcms/cms/bootstrap/web.php';
   $app->run();
   

$_GET = [
    'p' => 'login.php',
];

2021-12-16, 02:29:54

Apache/2.4.51 ()

Yii Framework/2.0.43