404 Not Found
Copied! Copy Stacktrace Search Stackoverflow Search Google Exception

HTTP 404 – Not Foundyii\web\NotFoundHttpException

Template not found: about/values/british-engineering

  • 1. in /home/content/vendor/craftcms/cms/src/controllers/TemplatesController.php at line 90
    81828384858687888990919293949596979899
        {
            // Does that template exist?
            if (
                (
                    Craft::$app->getConfig()->getGeneral()->headlessMode &&
                    Craft::$app->getRequest()->getIsSiteRequest()
                ) ||
                !$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('about/values/british-engineering', [])
  • 3. in /home/content/vendor/yiisoft/yii2/base/InlineAction.php at line 57 – call_user_func_array([craft\controllers\TemplatesController, 'actionRender'], ['about/values/british-engineering', []])
    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 /home/content/vendor/yiisoft/yii2/base/Controller.php at line 157 yii\base\InlineAction::runWithParams(['template' => 'about/values/british-engineering', 'p' => 'about/values/british-engineering'])
    151152153154155156157158159160161162163
            }
     
            $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 /home/content/vendor/craftcms/cms/src/web/Controller.php at line 178 yii\base\Controller::runAction('render', ['template' => 'about/values/british-engineering', 'p' => 'about/values/british-engineering'])
    172173174175176177178179180181182183184
        /**
         * @inheritdoc
         */
        public function runAction($id, $params = [])
        {
            try {
                return parent::runAction($id, $params);
            } catch (\Throwable $e) {
                if (Craft::$app->getRequest()->getAcceptsJson()) {
                    Craft::$app->getErrorHandler()->logException($e);
                    if (!YII_DEBUG && !$e instanceof UserException) {
                        $message = Craft::t('app', 'A server error occurred.');
                    } else {
    
  • 6. in /home/content/vendor/yiisoft/yii2/base/Module.php at line 528 – craft\web\Controller::runAction('render', ['template' => 'about/values/british-engineering', 'p' => 'about/values/british-engineering'])
    522523524525526527528529530531532533534
            $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;
            }
    
  • 7. in /home/content/vendor/craftcms/cms/src/web/Application.php at line 290 yii\base\Module::runAction('templates/render', ['template' => 'about/values/british-engineering', 'p' => 'about/values/british-engineering'])
    284285286287288289290291292293294295296
         * @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;
                }
     
    
  • 8. in /home/content/vendor/yiisoft/yii2/web/Application.php at line 103 – craft\web\Application::runAction('templates/render', ['template' => 'about/values/british-engineering', 'p' => 'about/values/british-engineering'])
    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) {
    
  • 9. in /home/content/vendor/craftcms/cms/src/web/Application.php at line 275 yii\web\Application::handleRequest(craft\web\Request)
    269270271272273274275276277278279280281
            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;
            }
        }
     
    
  • 10. in /home/content/vendor/yiisoft/yii2/base/Application.php at line 386 – craft\web\Application::handleRequest(craft\web\Request)
    380381382383384385386387388389390391392
        {
            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();
    
  • 11. in /home/content/public_html/index.php at line 21 yii\base\Application::run()
    15161718192021
        (new Dotenv\Dotenv(CRAFT_BASE_PATH))->load();
    }
     
    // Load and run Craft
    define('CRAFT_ENVIRONMENT', getenv('ENVIRONMENT') ?: 'production');
    $app = require CRAFT_VENDOR_PATH.'/craftcms/cms/bootstrap/web.php';
    $app->run();
    
$_GET = [
    'p' => 'about/values/british-engineering',
];