Uncaught TYPO3 Exception
#1420480928: RealURL was not able to find the root page id for the domain "w59u3yxst.hier-im-netz.de" as there was more than one root page with this domain. (More information)

Exception thrown in file
/home/www/public_html/typo3conf/ext/realurl/Classes/Configuration/ConfigurationReader.php in line 524.

17 DmitryDulepov\Realurl\Configuration\ConfigurationReader::setRootPageIdFromRootFlag()

/home/www/public_html/typo3conf/ext/realurl/Classes/Configuration/ConfigurationReader.php:
00485:  protected function setRootPageId() {
00486:   if (!isset($this->configuration['pagePath']['rootpage_id'])) {
00487:    $this->setRootPageIdFromDomainRecord() || $this->setRootPageIdFromRootFlag() || $this->setRootPageIdFromTopLevelPages();
00488:   }
00489:   if ((int)$this->configuration['pagePath']['rootpage_id'] === 0) {

16 DmitryDulepov\Realurl\Configuration\ConfigurationReader::setRootPageId()

/home/www/public_html/typo3conf/ext/realurl/Classes/Configuration/ConfigurationReader.php:
00364:    }
00365: 
00366:    $this->setRootPageId();
00367: 
00368:    if ($this->mode == self::MODE_ENCODE) {

15 DmitryDulepov\Realurl\Configuration\ConfigurationReader::setConfigurationForTheCurrentDomain()

/home/www/public_html/typo3conf/ext/realurl/Classes/Configuration/ConfigurationReader.php:
00111:    $this->performAutomaticConfiguration();
00112:    $this->setHostnames();
00113:    $this->setConfigurationForTheCurrentDomain();
00114:    $this->postProcessConfiguration();
00115:   }

14 DmitryDulepov\Realurl\Configuration\ConfigurationReader::__construct(1)

/home/www/public_html/typo3_src-8.7.32/typo3/sysext/core/Classes/Utility/GeneralUtility.php:
03973:         }
03974:         // Create new instance and call constructor with parameters
03975:         $instance = new $finalClassName(...$constructorArguments);
03976:         // Register new singleton instance
03977:         if ($instance instanceof SingletonInterface) {

13 TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance("DmitryDulepov\Realurl\Configuration\ConfigurationReader", 1)

/home/www/public_html/typo3conf/ext/realurl/Classes/Decoder/UrlDecoder.php:
01173:   */
01174:  protected function initializeConfiguration() {
01175:   $this->configuration = GeneralUtility::makeInstance('DmitryDulepov\\Realurl\\Configuration\\ConfigurationReader', ConfigurationReader::MODE_DECODE);
01176:  }
01177: 

12 DmitryDulepov\Realurl\Decoder\UrlDecoder::initializeConfiguration()

/home/www/public_html/typo3conf/ext/realurl/Classes/EncodeDecoderBase.php:
00210:   */
00211:  protected function initialize() {
00212:   $this->initializeConfiguration();
00213:   $this->emptySegmentValue = $this->configuration->get('init/emptySegmentValue');
00214:   $this->rootPageId = (int)$this->configuration->get('pagePath/rootpage_id');

11 DmitryDulepov\Realurl\EncodeDecoderBase::initialize()

/home/www/public_html/typo3conf/ext/realurl/Classes/Decoder/UrlDecoder.php:
01164:   */
01165:  protected function initialize() {
01166:   parent::initialize();
01167: 
01168:   $this->disallowedDoktypes = PageRepository::DOKTYPE_RECYCLER;

10 DmitryDulepov\Realurl\Decoder\UrlDecoder::initialize()

/home/www/public_html/typo3conf/ext/realurl/Classes/Decoder/UrlDecoder.php:
00145:    $this->caller = $params['pObj'];
00146: 
00147:    $this->initialize();
00148:    $this->mergeGetVarsFromDomainsConfiguration();
00149: 

9 DmitryDulepov\Realurl\Decoder\UrlDecoder::decodeUrl(array, TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController)
8 call_user_func_array(array, array)

/home/www/public_html/typo3_src-8.7.32/typo3/sysext/core/Classes/Utility/GeneralUtility.php:
03850:                     }
03851:                     // Call method:
03852:                     $content = call_user_func_array([&$classObj, $parts[1]], [&$params, &$ref]);
03853:                 } else {
03854:                     $errorMsg = 'No method name \'' . $parts[1] . '\' in class ' . $parts[0];

7 TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction("DmitryDulepov\Realurl\Decoder\UrlDecoder->decodeUrl", array, TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController)

/home/www/public_html/typo3_src-8.7.32/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php:
01116:             $_params = ['pObj' => &$this];
01117:             foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['checkAlternativeIdMethods-PostProc'] as $_funcRef) {
01118:                 GeneralUtility::callUserFunction($_funcRef, $_params, $this);
01119:             }
01120:         }

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

/home/www/public_html/typo3_src-8.7.32/typo3/sysext/frontend/Classes/Http/RequestHandler.php:
00135:                     ->loadExtTables();
00136:         }
00137:         $this->controller->checkAlternativeIdMethods();
00138:         $this->controller->clear_preview();
00139:         $this->controller->determineId();

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

/home/www/public_html/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)

/home/www/public_html/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()

/home/www/public_html/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}()

/home/www/public_html/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("/home/www/public_html/typo3_src-8.7.32/typo3/sysext/frontend/Resources/Private/Php/frontend.php")

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