Uncaught TYPO3 Exception
#1343464100: Broken rootline. Mountpoint parameter does not match the actual rootline. mount_pid (2111) does not match page uid (56). (More information)

RuntimeException thrown in file
/usr/www/users/fggpnt/live/typo3_src-8.7.32/typo3/sysext/core/Classes/Utility/RootlineUtility.php in line 447.

17 TYPO3\CMS\Core\Utility\RootlineUtility::processMountedPage(array, array)

/usr/www/users/fggpnt/live/typo3_src-8.7.32/typo3/sysext/core/Classes/Utility/RootlineUtility.php:
00393:         if ($this->isMountedPage()) {
00394:             $mountPoint = $this->getRecordArray($this->parsedMountPointParameters[$this->pageUid]);
00395:             $page = $this->processMountedPage($page, $mountPoint);
00396:             $parentUid = $mountPoint['pid'];
00397:             // Anyhow after reaching the mount-point, we have to go up that rootline

16 TYPO3\CMS\Core\Utility\RootlineUtility::generateRootlineCache()

/usr/www/users/fggpnt/live/typo3_src-8.7.32/typo3/sysext/core/Classes/Utility/RootlineUtility.php:
00204:             $entry = static::$cache->get($this->cacheIdentifier);
00205:             if (!$entry) {
00206:                 $this->generateRootlineCache();
00207:             } else {
00208:                 static::$localCache[$this->cacheIdentifier] = $entry;

15 TYPO3\CMS\Core\Utility\RootlineUtility::get()

/usr/www/users/fggpnt/live/typo3_src-8.7.32/typo3/sysext/core/Classes/Utility/RootlineUtility.php:
00406:             /** @var $rootline \TYPO3\CMS\Core\Utility\RootlineUtility */
00407:             $rootline = GeneralUtility::makeInstance(\TYPO3\CMS\Core\Utility\RootlineUtility::class, $parentUid, $mountPointParameter, $this->pageContext);
00408:             $rootline = $rootline->get();
00409:             // retrieve cache tags of parent rootline
00410:             foreach ($rootline as $entry) {

14 TYPO3\CMS\Core\Utility\RootlineUtility::generateRootlineCache()

/usr/www/users/fggpnt/live/typo3_src-8.7.32/typo3/sysext/core/Classes/Utility/RootlineUtility.php:
00204:             $entry = static::$cache->get($this->cacheIdentifier);
00205:             if (!$entry) {
00206:                 $this->generateRootlineCache();
00207:             } else {
00208:                 static::$localCache[$this->cacheIdentifier] = $entry;

13 TYPO3\CMS\Core\Utility\RootlineUtility::get()

/usr/www/users/fggpnt/live/typo3_src-8.7.32/typo3/sysext/core/Classes/Utility/RootlineUtility.php:
00406:             /** @var $rootline \TYPO3\CMS\Core\Utility\RootlineUtility */
00407:             $rootline = GeneralUtility::makeInstance(\TYPO3\CMS\Core\Utility\RootlineUtility::class, $parentUid, $mountPointParameter, $this->pageContext);
00408:             $rootline = $rootline->get();
00409:             // retrieve cache tags of parent rootline
00410:             foreach ($rootline as $entry) {

12 TYPO3\CMS\Core\Utility\RootlineUtility::generateRootlineCache()

/usr/www/users/fggpnt/live/typo3_src-8.7.32/typo3/sysext/core/Classes/Utility/RootlineUtility.php:
00204:             $entry = static::$cache->get($this->cacheIdentifier);
00205:             if (!$entry) {
00206:                 $this->generateRootlineCache();
00207:             } else {
00208:                 static::$localCache[$this->cacheIdentifier] = $entry;

11 TYPO3\CMS\Core\Utility\RootlineUtility::get()

/usr/www/users/fggpnt/live/typo3_src-8.7.32/typo3/sysext/frontend/Classes/Page/PageRepository.php:
00952:         $rootline = GeneralUtility::makeInstance(RootlineUtility::class, $uid, $MP, $this);
00953:         try {
00954:             return $rootline->get();
00955:         } catch (\RuntimeException $ex) {
00956:             if ($ignoreMPerrors) {

10 TYPO3\CMS\Frontend\Page\PageRepository::getRootLine(2328, "56-2823")

/usr/www/users/fggpnt/live/typo3_src-8.7.32/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php:
01542:         }
01543:         // Gets the rootLine
01544:         $this->rootLine = $this->sys_page->getRootLine($this->id, $this->MP);
01545:         // If not rootline we're off...
01546:         if (empty($this->rootLine)) {

9 TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController::getPageAndRootline()

/usr/www/users/fggpnt/live/typo3_src-8.7.32/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php:
01836:     public function getPageAndRootlineWithDomain($domainStartPage)
01837:     {
01838:         $this->getPageAndRootline();
01839:         // Checks if the $domain-startpage is in the rootLine. This is necessary so that references to page-id's from other domains are not possible.
01840:         if ($domainStartPage && is_array($this->rootLine)) {

8 TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController::getPageAndRootlineWithDomain(160)

/usr/www/users/fggpnt/live/typo3_src-8.7.32/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php:
01426:         // We store the originally requested id
01427:         $this->requestedId = $this->id;
01428:         $this->getPageAndRootlineWithDomain($this->domainStartPage);
01429:         $timeTracker->pull();
01430:         if ($this->pageNotFound && $GLOBALS['TYPO3_CONF_VARS']['FE']['pageNotFound_handling']) {

7 TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController::fetch_the_id()

/usr/www/users/fggpnt/live/typo3_src-8.7.32/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php:
01279:         $this->getTimeTracker()->pull();
01280:         // Now, get the id, validate access etc:
01281:         $this->fetch_the_id();
01282:         // Check if backend user has read access to this page. If not, recalculate the id.
01283:         if ($this->beUserLogin && $this->fePreview) {

6 TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController::determineId()

/usr/www/users/fggpnt/live/typo3_src-8.7.32/typo3/sysext/frontend/Classes/Http/RequestHandler.php:
00137:         $this->controller->checkAlternativeIdMethods();
00138:         $this->controller->clear_preview();
00139:         $this->controller->determineId();
00140: 
00141:         // Now, if there is a backend user logged in and he has NO access to this page,

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

/usr/www/users/fggpnt/live/typo3_src-8.7.32/typo3/sysext/core/Classes/Core/Bootstrap.php:
00317: 
00318:         // Execute the command which returns a Response object or NULL
00319:         $this->response = $requestHandler->handleRequest($request);
00320:         return $this;
00321:     }

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

/usr/www/users/fggpnt/live/typo3_src-8.7.32/typo3/sysext/frontend/Classes/Http/Application.php:
00077:     public function run(callable $execute = null)
00078:     {
00079:         $this->bootstrap->handleRequest(\TYPO3\CMS\Core\Http\ServerRequestFactory::fromGlobals());
00080: 
00081:         if ($execute !== null) {

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

/usr/www/users/fggpnt/live/typo3_src-8.7.32/typo3/sysext/frontend/Resources/Private/Php/frontend.php:
00021: call_user_func(function () {
00022:     $classLoader = require __DIR__ . '/../../../../../../vendor/autoload.php';
00023:     (new \TYPO3\CMS\Frontend\Http\Application($classLoader))->run();
00024: });

2 {closure}()

/usr/www/users/fggpnt/live/typo3_src-8.7.32/typo3/sysext/frontend/Resources/Private/Php/frontend.php:
00022:     $classLoader = require __DIR__ . '/../../../../../../vendor/autoload.php';
00023:     (new \TYPO3\CMS\Frontend\Http\Application($classLoader))->run();
00024: });

1 require("/usr/www/users/fggpnt/live/typo3_src-8.7.32/typo3/sysext/frontend/Resources/Private/Php/frontend.php")

/usr/www/users/fggpnt/live/typo3_src-8.7.32/index.php:
00001: <?php
00002: 
00003: require __DIR__ . '/typo3/sysext/frontend/Resources/Private/Php/frontend.php';