lbr-media / typo3-bootstrap-base

Basic installation package to run typo3-extension-bootstrap with distribution typo3-extension-bootstrap-example.
0 stars 0 forks source link

Install-Tool (first install) does not create tables when bootstrap extension loaded #1

Open sunixzs opened 2 years ago

sunixzs commented 2 years ago

composer.json

{
    "name": "lbr-media/typo3-bootstrap-base",
    "description": "TYPO3 CMS Base Distribution with bootstrap 5 template engine.",
    "license": "GPL-2.0-or-later",
    "config": {
        "allow-plugins": {
            "typo3/cms-composer-installers": true,
            "typo3/class-alias-loader": true
        },
        "sort-packages": true
    },
    "require": {
        "helhum/typo3-console": "^7",
        "lbr-media/typo3-extension-bootstrap": "^1.0",
        "lbr-media/typo3-extension-bootstrap-example": "^1.0",
        "typo3/cms-adminpanel": "^11.5",
        "typo3/cms-backend": "^11.5",
        "typo3/cms-belog": "^11.5",
        "typo3/cms-beuser": "^11.5",
        "typo3/cms-core": "^11.5",
        "typo3/cms-dashboard": "^11.5",
        "typo3/cms-extbase": "^11.5",
        "typo3/cms-extensionmanager": "^11.5",
        "typo3/cms-filelist": "^11.5",
        "typo3/cms-filemetadata": "^11.5",
        "typo3/cms-fluid": "^11.5",
        "typo3/cms-frontend": "^11.5",
        "typo3/cms-impexp": "^11.5",
        "typo3/cms-info": "^11.5",
        "typo3/cms-install": "^11.5",
        "typo3/cms-lowlevel": "^11.5",
        "typo3/cms-recordlist": "^11.5",
        "typo3/cms-reports": "^11.5",
        "typo3/cms-rte-ckeditor": "^11.5",
        "typo3/cms-seo": "^11.5",
        "typo3/cms-setup": "^11.5",
        "typo3/cms-sys-note": "^11.5",
        "typo3/cms-t3editor": "^11.5",
        "typo3/cms-tstemplate": "^11.5",
        "typo3/cms-viewpage": "^11.5"
    },
    "scripts": {
        "typo3-cms-scripts": [
            "typo3cms install:fixfolderstructure"
        ],
        "post-autoload-dump": [
            "@typo3-cms-scripts"
        ]
    }
}

When lbr-media/typo3-extension-bootstrap is required before first install the Install-Tool will not create tables. It stops with a error 500 after submitting admin user data.

No error messages in Typo3-, SQL-, Apache- and PHP-Log. Only the resulting error "Cannot read from table pages..." b/c it has not been created.

There is no problem installing typo without bootstrap extension and after that installing the extension.

sunixzs commented 2 years ago

The workaround is to install Typo3 first and after that install the extensions (as mentioned in README.md).