You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am currently using Container Content Elements version 2.1.2. However, when I activate my Site Package, I encounter an incomplete upgrade wizard and an error occurs when I attempt to "execute" the container. What could be the reasons for the incomplete upgrade?
(1/1) TypeError
TYPO3\CMS\Core\Authentication\AbstractUserAuthentication::start(): Argument #1 ($request) must be of type Psr\Http\Message\ServerRequestInterface, null given, called in /html/typo3/typo3_src-12.4.4/typo3/sysext/core/Classes/Core/Bootstrap.php on line 545
also im getting error when i try to upgrade the site from 12.4 to 12.4.13
(1/1) Error
Typed property TYPO3\CMS\Frontend\ContentObject\AbstractContentObject::$request must not be accessed before initialization
The text was updated successfully, but these errors were encountered:
Same problem for me, it seems to be related to t3/dce extension because we are in a BE context for installation and this case wasn't taken in account by dce extension.
We have in DCE, a test like this:
if (ApplicationType::fromRequest($GLOBALS['TYPO3_REQUEST'])->isFrontend()) {
while it should be something like that:
if (!isset($_REQUEST['install']) && ApplicationType::fromRequest($GLOBALS['TYPO3_REQUEST'])->isFrontend()) {
I am currently using Container Content Elements version 2.1.2. However, when I activate my Site Package, I encounter an incomplete upgrade wizard and an error occurs when I attempt to "execute" the container. What could be the reasons for the incomplete upgrade?
(1/1) TypeError
TYPO3\CMS\Core\Authentication\AbstractUserAuthentication::start(): Argument #1 ($request) must be of type Psr\Http\Message\ServerRequestInterface, null given, called in /html/typo3/typo3_src-12.4.4/typo3/sysext/core/Classes/Core/Bootstrap.php on line 545
also im getting error when i try to upgrade the site from 12.4 to 12.4.13
(1/1) Error
Typed property TYPO3\CMS\Frontend\ContentObject\AbstractContentObject::$request must not be accessed before initialization
The text was updated successfully, but these errors were encountered: