Search code examples
typo3typo3-9.x

TYPO3 9: Disabled page shows up in navigation after enabling site configuration


After a TYPO3 update from version 8.7 to 9.5 the website shows disabled pages in the navigation or sitemap module of ext:fluid_styled_content as soon as I add a site configuration. The config.yaml just holds this information:

base: /
baseVariants: {  }
errorHandling: {  }
languages:
  -
    title: Deutsch
    enabled: true
    base: /
    typo3Language: de
    locale: de_DE.UTF-8
    iso-639-1: de
    navigationTitle: ''
    hreflang: ''
    direction: ''
    flag: global
    languageId: '0'
rootPageId: 1
routes: {  }

Just to make sure, that it is not related to my TypoScript configuration, I installed ext:bootstrap_package and disabled my "template" extension. But this did not help, the disabled pages showed up as well.

After removing the rootPageId: 1 from the sites configuration, the disabled pages are not shown in the navigation.

Does anybody knows, what goes wrong or even how to solve this issue?


Solution

  • After hours of debugging, I realized, that the extension frontent_editing caused this error. I had version 1.7.0 running and it was fixed in version 1.8.2. See bug report.

    So after upgrading to current version 1.8.3 disabled pages are hidden in the navigation and sitemap menus again.