Uncaught TYPO3 Exception
#1: PHP Warning: filemtime(): stat failed for EXT:news/Resources/Private/Templates/News/DetailNotFound.html in /var/www/web361/html/typo3/sysext/fluid/Classes/View/StandaloneView.php line 553 (More information)

TYPO3\CMS\Core\Error\Exception thrown in file
/var/www/web361/html/typo3/sysext/core/Classes/Error/ErrorHandler.php in line 111.

66 TYPO3\CMS\Core\Error\ErrorHandler::handleError(2, "filemtime(): stat failed for EXT:news/Resources/Private/Templates/News/DetailNotFound.html", "/var/www/web361/html/typo3/sysext/fluid/Classes/View/StandaloneView.php", 553, array)
65 filemtime("EXT:news/Resources/Private/Templates/News/DetailNotFound.html")

/var/www/web361/html/typo3/sysext/fluid/Classes/View/StandaloneView.php:
00551:     protected function createIdentifierForFile($pathAndFilename, $prefix)
00552:     {
00553:         $templateModifiedTimestamp = filemtime($pathAndFilename);
00554:         $templateIdentifier = sprintf('Standalone_%s_%s', $prefix, sha1($pathAndFilename . '|' . $templateModifiedTimestamp));
00555:         $templateIdentifier = str_replace('/', '_', str_replace('.', '_', $templateIdentifier));

64 TYPO3\CMS\Fluid\View\StandaloneView::createIdentifierForFile("EXT:news/Resources/Private/Templates/News/DetailNotFound.html", "template_file_DetailNotFound")

/var/www/web361/html/typo3/sysext/fluid/Classes/View/StandaloneView.php:
00377:             $templateFilenameWithoutExtension = basename($templatePathAndFilename, '.' . $templatePathAndFilenameInfo['extension']);
00378:             $prefix = sprintf('template_file_%s', $templateFilenameWithoutExtension);
00379:             return $this->createIdentifierForFile($templatePathAndFilename, $prefix);
00380:         } else {
00381:             $templateSource = $this->getTemplateSource();

63 TYPO3\CMS\Fluid\View\StandaloneView::getTemplateIdentifier(NULL)

/var/www/web361/html/typo3/sysext/fluid/Classes/View/AbstractTemplateView.php:
00165:         $this->templateParser->setConfiguration($this->buildParserConfiguration());
00166: 
00167:         $templateIdentifier = $this->getTemplateIdentifier($actionName);
00168:         if ($this->templateCompiler->has($templateIdentifier)) {
00169:             $parsedTemplate = $this->templateCompiler->get($templateIdentifier);

62 TYPO3\CMS\Fluid\View\AbstractTemplateView::render()

/var/www/web361/html/typo3conf/ext/news/Classes/Controller/NewsBaseController.php:
00119:                 $standaloneTemplate = GeneralUtility::makeInstance(StandaloneView::class);
00120:                 $standaloneTemplate->setTemplatePathAndFilename($configuration[1]);
00121:                 return $standaloneTemplate->render();
00122:                 break;
00123:             default:

61 GeorgRinger\News\Controller\NewsBaseController::handleNoNewsFoundError("showStandaloneTemplate,EXT:news/Resources/Private/Templates/News/DetailNotFound.html,404")

/var/www/web361/html/typo3conf/ext/news/Classes/Controller/NewsController.php:
00257: 
00258:         if (is_null($news) && isset($this->settings['detail']['errorHandling'])) {
00259:             $errorContent = $this->handleNoNewsFoundError($this->settings['detail']['errorHandling']);
00260:             if ($errorContent) {
00261:                 return $errorContent;

60 GeorgRinger\News\Controller\NewsController::detailAction(NULL, 1)
59 call_user_func_array(array, array)

/var/www/web361/html/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php:
00281:         if (!$validationResult->hasErrors()) {
00282:             $this->emitBeforeCallActionMethodSignal($preparedArguments);
00283:             $actionResult = call_user_func_array([$this, $this->actionMethodName], $preparedArguments);
00284:         } else {
00285:             $methodTagsValues = $this->reflectionService->getMethodTagsValues(get_class($this), $this->actionMethodName);

58 TYPO3\CMS\Extbase\Mvc\Controller\ActionController::callActionMethod()

/var/www/web361/html/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php:
00174:             $this->initializeView($this->view);
00175:         }
00176:         $this->callActionMethod();
00177:     }
00178: 

57 TYPO3\CMS\Extbase\Mvc\Controller\ActionController::processRequest(TYPO3\CMS\Extbase\Mvc\Web\Request, TYPO3\CMS\Extbase\Mvc\Web\Response)

/var/www/web361/html/typo3conf/ext/news/Classes/Controller/NewsBaseController.php:
00044:     {
00045:         try {
00046:             parent::processRequest($request, $response);
00047:         } catch (\Exception $exception) {
00048:             $this->handleKnownExceptionsElseThrowAgain($exception);

56 GeorgRinger\News\Controller\NewsBaseController::processRequest(TYPO3\CMS\Extbase\Mvc\Web\Request, TYPO3\CMS\Extbase\Mvc\Web\Response)

/var/www/web361/html/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php:
00084:             $controller = $this->resolveController($request);
00085:             try {
00086:                 $controller->processRequest($request, $response);
00087:             } catch (\TYPO3\CMS\Extbase\Mvc\Exception\StopActionException $ignoredException) {
00088:             }

55 TYPO3\CMS\Extbase\Mvc\Dispatcher::dispatch(TYPO3\CMS\Extbase\Mvc\Web\Request, TYPO3\CMS\Extbase\Mvc\Web\Response)

/var/www/web361/html/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php:
00067:         /** @var $response \TYPO3\CMS\Extbase\Mvc\ResponseInterface */
00068:         $response = $this->objectManager->get(\TYPO3\CMS\Extbase\Mvc\Web\Response::class);
00069:         $this->dispatcher->dispatch($request, $response);
00070:         return $response;
00071:     }

54 TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler::handleRequest()

/var/www/web361/html/typo3/sysext/extbase/Classes/Core/Bootstrap.php:
00204:         $requestHandler = $requestHandlerResolver->resolveRequestHandler();
00205: 
00206:         $response = $requestHandler->handleRequest();
00207:         // If response is NULL after handling the request we need to stop
00208:         // This happens for instance, when a USER object was converted to a USER_INT

53 TYPO3\CMS\Extbase\Core\Bootstrap::handleRequest()

/var/www/web361/html/typo3/sysext/extbase/Classes/Core/Bootstrap.php:
00191:     {
00192:         $this->initialize($configuration);
00193:         return $this->handleRequest();
00194:     }
00195: 

52 TYPO3\CMS\Extbase\Core\Bootstrap::run("", array)
51 call_user_func_array(array, array)

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
07314:                         $content,
07315:                         $conf
07316:                     ]);
07317:                 } else {
07318:                     $this->getTimeTracker()->setTSlogMessage('Method "' . $parts[1] . '" did not exist in class "' . $parts[0] . '"', 3);

50 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::callUserFunction("TYPO3\CMS\Extbase\Core\Bootstrap->run", array, "")

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php:
00038:         }
00039:         $this->cObj->includeLibs($conf);
00040:         $tempContent = $this->cObj->callUserFunction($conf['userFunc'], $conf, '');
00041:         if ($this->cObj->doConvertToUserIntObject) {
00042:             $this->cObj->doConvertToUserIntObject = false;

49 TYPO3\CMS\Frontend\ContentObject\UserContentObject::render(array)

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00941:         // Render content
00942:         try {
00943:             $content .= $contentObject->render($configuration);
00944:         } catch (ContentRenderingException $exception) {
00945:             // Content rendering Exceptions indicate a critical problem which should not be

48 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::render(TYPO3\CMS\Frontend\ContentObject\UserContentObject, array)

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00857:                     $contentObject = $this->getContentObject($name);
00858:                     if ($contentObject) {
00859:                         $content .= $this->render($contentObject, $conf);
00860:                     } else {
00861:                         // Call hook functions for extra processing

47 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle("USER", array)

/var/www/web361/html/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php:
00117:             $setup = $setup[$segment . '.'];
00118:         }
00119:         $content = $contentObject->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.']);
00120:         if (TYPO3_MODE === 'BE') {
00121:             $this->resetFrontendEnvironment();

46 TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::render("tt_content.list.20.news_pi1", array, NULL, "")
45 call_user_func_array(array, array)

/var/www/web361/html/typo3/sysext/fluid/Classes/Core/ViewHelper/AbstractViewHelper.php:
00266: 
00267:         try {
00268:             return call_user_func_array([$this, 'render'], $renderMethodParameters);
00269:         } catch (Exception $exception) {
00270:             if (GeneralUtility::getApplicationContext()->isProduction()) {

44 TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper::callRenderMethod()

/var/www/web361/html/typo3/sysext/fluid/Classes/Core/ViewHelper/AbstractViewHelper.php:
00247:         $this->initialize();
00248: 
00249:         return $this->callRenderMethod();
00250:     }
00251: 

43 TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper::initializeArgumentsAndRender()

/var/www/web361/html/typo3/sysext/fluid/Classes/Core/Parser/SyntaxTree/ViewHelperNode.php:
00135:         }
00136: 
00137:         $output = $viewHelper->initializeArgumentsAndRender();
00138: 
00139:         return $output;

42 TYPO3\CMS\Fluid\Core\Parser\SyntaxTree\ViewHelperNode::evaluate(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext)

/var/www/web361/html/typo3/sysext/fluid/Classes/Core/Parser/SyntaxTree/AbstractNode.php:
00046:                     $output = (string)$output;
00047:                 }
00048:                 $subNodeOutput = $subNode->evaluate($renderingContext);
00049: 
00050:                 if (is_object($subNodeOutput)) {

41 TYPO3\CMS\Fluid\Core\Parser\SyntaxTree\AbstractNode::evaluateChildNodes(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext)

/var/www/web361/html/typo3/sysext/fluid/Classes/Core/ViewHelper/AbstractViewHelper.php:
00310:             return $closure();
00311:         }
00312:         return $this->viewHelperNode->evaluateChildNodes($this->renderingContext);
00313:     }
00314: 

40 TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper::renderChildren()

/var/www/web361/html/typo3/sysext/fluid/Classes/ViewHelpers/SectionViewHelper.php:
00098:         if ($this->viewHelperVariableContainer->exists(\TYPO3\CMS\Fluid\ViewHelpers\SectionViewHelper::class, 'isCurrentlyRenderingSection')) {
00099:             $this->viewHelperVariableContainer->remove(\TYPO3\CMS\Fluid\ViewHelpers\SectionViewHelper::class, 'isCurrentlyRenderingSection');
00100:             return $this->renderChildren();
00101:         }
00102:         return '';

39 TYPO3\CMS\Fluid\ViewHelpers\SectionViewHelper::render()
38 call_user_func_array(array, array)

/var/www/web361/html/typo3/sysext/fluid/Classes/Core/ViewHelper/AbstractViewHelper.php:
00266: 
00267:         try {
00268:             return call_user_func_array([$this, 'render'], $renderMethodParameters);
00269:         } catch (Exception $exception) {
00270:             if (GeneralUtility::getApplicationContext()->isProduction()) {

37 TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper::callRenderMethod()

/var/www/web361/html/typo3/sysext/fluid/Classes/Core/ViewHelper/AbstractViewHelper.php:
00247:         $this->initialize();
00248: 
00249:         return $this->callRenderMethod();
00250:     }
00251: 

36 TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper::initializeArgumentsAndRender()

/var/www/web361/html/typo3/sysext/fluid/Classes/Core/Parser/SyntaxTree/ViewHelperNode.php:
00135:         }
00136: 
00137:         $output = $viewHelper->initializeArgumentsAndRender();
00138: 
00139:         return $output;

35 TYPO3\CMS\Fluid\Core\Parser\SyntaxTree\ViewHelperNode::evaluate(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext)

/var/www/web361/html/typo3/sysext/fluid/Classes/View/AbstractTemplateView.php:
00245: 
00246:             $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
00247:             $output = $section->evaluate($renderingContext);
00248:             $this->stopRendering();
00249:         }

34 TYPO3\CMS\Fluid\View\AbstractTemplateView::renderSection("Main", array, boolean)

/var/www/web361/html/typo3/sysext/fluid/Classes/ViewHelpers/RenderViewHelper.php:
00119:             return $viewHelperVariableContainer->getView()->renderPartial($partial, $section, $arguments);
00120:         } elseif ($section !== null) {
00121:             return $viewHelperVariableContainer->getView()->renderSection($section, $arguments, $optional);
00122:         }
00123: 

33 TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array, Closure, TYPO3\CMS\Fluid\Core\Rendering\RenderingContext)

/var/www/web361/html/typo3/sysext/fluid/Classes/ViewHelpers/RenderViewHelper.php:
00097:             $this->buildRenderChildrenClosure(),
00098:             $this->renderingContext
00099:         );
00100:     }
00101: 

32 TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::render("Main", NULL, array, boolean)
31 call_user_func_array(array, array)

/var/www/web361/html/typo3/sysext/fluid/Classes/Core/ViewHelper/AbstractViewHelper.php:
00266: 
00267:         try {
00268:             return call_user_func_array([$this, 'render'], $renderMethodParameters);
00269:         } catch (Exception $exception) {
00270:             if (GeneralUtility::getApplicationContext()->isProduction()) {

30 TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper::callRenderMethod()

/var/www/web361/html/typo3/sysext/fluid/Classes/Core/ViewHelper/AbstractViewHelper.php:
00247:         $this->initialize();
00248: 
00249:         return $this->callRenderMethod();
00250:     }
00251: 

29 TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper::initializeArgumentsAndRender()

/var/www/web361/html/typo3/sysext/fluid/Classes/Core/Parser/SyntaxTree/ViewHelperNode.php:
00135:         }
00136: 
00137:         $output = $viewHelper->initializeArgumentsAndRender();
00138: 
00139:         return $output;

28 TYPO3\CMS\Fluid\Core\Parser\SyntaxTree\ViewHelperNode::evaluate(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext)

/var/www/web361/html/typo3/sysext/fluid/Classes/Core/Parser/SyntaxTree/AbstractNode.php:
00046:                     $output = (string)$output;
00047:                 }
00048:                 $subNodeOutput = $subNode->evaluate($renderingContext);
00049: 
00050:                 if (is_object($subNodeOutput)) {

27 TYPO3\CMS\Fluid\Core\Parser\SyntaxTree\AbstractNode::evaluateChildNodes(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext)

/var/www/web361/html/typo3/sysext/fluid/Classes/Core/Parser/SyntaxTree/RootNode.php:
00025:     public function evaluate(\TYPO3\CMS\Fluid\Core\Rendering\RenderingContextInterface $renderingContext)
00026:     {
00027:         return $this->evaluateChildNodes($renderingContext);
00028:     }
00029: }

26 TYPO3\CMS\Fluid\Core\Parser\SyntaxTree\RootNode::evaluate(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext)

/var/www/web361/html/typo3/sysext/fluid/Classes/Core/Parser/ParsingState.php:
00083:     public function render(\TYPO3\CMS\Fluid\Core\Rendering\RenderingContextInterface $renderingContext)
00084:     {
00085:         return $this->rootNode->evaluate($renderingContext);
00086:     }
00087: 

25 TYPO3\CMS\Fluid\Core\Parser\ParsingState::render(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext)

/var/www/web361/html/typo3/sysext/fluid/Classes/View/AbstractTemplateView.php:
00187:             }
00188:             $this->startRendering(self::RENDERING_LAYOUT, $parsedTemplate, $this->baseRenderingContext);
00189:             $output = $parsedLayout->render($this->baseRenderingContext);
00190:             $this->stopRendering();
00191:         } else {

24 TYPO3\CMS\Fluid\View\AbstractTemplateView::render()

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php:
00298:     protected function renderFluidView()
00299:     {
00300:         return $this->view->render();
00301:     }
00302: 

23 TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject::renderFluidView()

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php:
00100:         $this->view->assignMultiple($variables);
00101: 
00102:         $content = $this->renderFluidView();
00103:         $content = $this->applyStandardWrapToRenderedContent($content, $conf);
00104: 

22 TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject::render(array)

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00941:         // Render content
00942:         try {
00943:             $content .= $contentObject->render($configuration);
00944:         } catch (ContentRenderingException $exception) {
00945:             // Content rendering Exceptions indicate a critical problem which should not be

21 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::render(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject, array)

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00857:                     $contentObject = $this->getContentObject($name);
00858:                     if ($contentObject) {
00859:                         $content .= $this->render($contentObject, $conf);
00860:                     } else {
00861:                         // Call hook functions for extra processing

20 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle("FLUIDTEMPLATE", array, "lib.fluidContent")

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00839:                 // Getting the cObject
00840:                 $timeTracker->incStackPointer();
00841:                 $content .= $this->cObjGetSingle($name, $conf, $key);
00842:                 $timeTracker->decStackPointer();
00843:             } else {

19 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle("< lib.fluidContent", array, "list")

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php:
00042:             $theValue = '';
00043:         } else {
00044:             $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'], $key);
00045:         }
00046:         if (isset($conf['stdWrap.'])) {

18 TYPO3\CMS\Frontend\ContentObject\CaseContentObject::render(array)

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00941:         // Render content
00942:         try {
00943:             $content .= $contentObject->render($configuration);
00944:         } catch (ContentRenderingException $exception) {
00945:             // Content rendering Exceptions indicate a critical problem which should not be

17 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::render(TYPO3\CMS\Frontend\ContentObject\CaseContentObject, array)

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00857:                     $contentObject = $this->getContentObject($name);
00858:                     if ($contentObject) {
00859:                         $content .= $this->render($contentObject, $conf);
00860:                     } else {
00861:                         // Call hook functions for extra processing

16 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle("CASE", array, "tt_content")

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00839:                 // Getting the cObject
00840:                 $timeTracker->incStackPointer();
00841:                 $content .= $this->cObjGetSingle($name, $conf, $key);
00842:                 $timeTracker->decStackPointer();
00843:             } else {

15 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle("<tt_content", NULL, "")

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php:
00095:                         $this->cObj->lastChanged($row['tstamp']);
00096:                         $cObj->start($row, $conf['table']);
00097:                         $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
00098:                         $cobjValue .= $tmpValue;
00099:                     }

14 TYPO3\CMS\Frontend\ContentObject\ContentContentObject::render(array)

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00941:         // Render content
00942:         try {
00943:             $content .= $contentObject->render($configuration);
00944:         } catch (ContentRenderingException $exception) {
00945:             // Content rendering Exceptions indicate a critical problem which should not be

13 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::render(TYPO3\CMS\Frontend\ContentObject\ContentContentObject, array)

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00857:                     $contentObject = $this->getContentObject($name);
00858:                     if ($contentObject) {
00859:                         $content .= $this->render($contentObject, $conf);
00860:                     } else {
00861:                         // Call hook functions for extra processing

12 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle("CONTENT", array)

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php:
00261:             }
00262:             if (!in_array($variableName, $reservedVariables)) {
00263:                 $variables[$variableName] = $this->cObj->cObjGetSingle($cObjType, $variablesToProcess[$variableName . '.']);
00264:             } else {
00265:                 throw new \InvalidArgumentException(

11 TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject::getContentObjectVariables(array)

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php:
00095:         $this->setExtbaseVariables($conf);
00096:         $this->assignSettings($conf);
00097:         $variables = $this->getContentObjectVariables($conf);
00098:         $variables = $this->contentDataProcessor->process($this->cObj, $conf, $variables);
00099: 

10 TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject::render(array)

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00941:         // Render content
00942:         try {
00943:             $content .= $contentObject->render($configuration);
00944:         } catch (ContentRenderingException $exception) {
00945:             // Content rendering Exceptions indicate a critical problem which should not be

9 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::render(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject, array)

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00857:                     $contentObject = $this->getContentObject($name);
00858:                     if ($contentObject) {
00859:                         $content .= $this->render($contentObject, $conf);
00860:                     } else {
00861:                         // Call hook functions for extra processing

8 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle("FLUIDTEMPLATE", array, "10")

/var/www/web361/html/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00803:             if ((int)$theKey && strpos($theKey, '.') === false) {
00804:                 $conf = $setup[$theKey . '.'];
00805:                 $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
00806:             }
00807:         }

7 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGet(array)

/var/www/web361/html/typo3/sysext/frontend/Classes/Page/PageGenerator.php:
00208:         $timeTracker->incStackPointer();
00209:         $timeTracker->push($tsfe->sPre, 'PAGE');
00210:         $pageContent = $tsfe->cObj->cObjGet($tsfe->pSetup);
00211:         if ($tsfe->pSetup['wrap']) {
00212:             $pageContent = $tsfe->cObj->wrap($pageContent, $tsfe->pSetup['wrap']);

6 TYPO3\CMS\Frontend\Page\PageGenerator::renderContent()

/var/www/web361/html/typo3/sysext/frontend/Classes/Http/RequestHandler.php:
00214:                 // Content generation
00215:                 if (!$this->controller->isINTincScript()) {
00216:                     PageGenerator::renderContent();
00217:                     $this->controller->setAbsRefPrefix();
00218:                 }

5 TYPO3\CMS\Frontend\Http\RequestHandler::handleRequest(TYPO3\CMS\Core\Http\ServerRequest)

/var/www/web361/html/typo3/sysext/core/Classes/Core/Bootstrap.php:
00305: 
00306:         // Execute the command which returns a Response object or NULL
00307:         $this->response = $requestHandler->handleRequest($request);
00308:         return $this;
00309:     }

4 TYPO3\CMS\Core\Core\Bootstrap::handleRequest(TYPO3\CMS\Core\Http\ServerRequest)

/var/www/web361/html/typo3/sysext/frontend/Classes/Http/Application.php:
00076:     public function run(callable $execute = null)
00077:     {
00078:         $this->bootstrap->handleRequest(\TYPO3\CMS\Core\Http\ServerRequestFactory::fromGlobals());
00079: 
00080:         if ($execute !== null) {

3 TYPO3\CMS\Frontend\Http\Application::run()

/var/www/web361/html/index.php:
00031: call_user_func(function () {
00032:     $classLoader = require rtrim(realpath(__DIR__ . '/typo3'), '\\/') . '/../vendor/autoload.php';
00033:     (new \TYPO3\CMS\Frontend\Http\Application($classLoader))->run();
00034: });

2 {closure}()
1 call_user_func(Closure)

/var/www/web361/html/index.php:
00032:     $classLoader = require rtrim(realpath(__DIR__ . '/typo3'), '\\/') . '/../vendor/autoload.php';
00033:     (new \TYPO3\CMS\Frontend\Http\Application($classLoader))->run();
00034: });