Actions
Bug #95586
closedPageNotFound handling doesn't work in debug mode
Status:
Closed
Priority:
Should have
Assignee:
Category:
Frontend
Target version:
Start date:
2021-10-12
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
8.0
Tags:
Complexity:
easy
Is Regression:
Sprint Focus:
Description
If debug mode is enabled, the page not found handler throws an exception:
Error handler could not fetch error page "http://localhost/404", reason: PHP Warning: Undefined property: GuzzleHttp\Psr7\Response::$getStatusCode in /private/typo3/sysext/core/Classes/Error/PageErrorHandler/PageContentErrorHandler.php line 147
Settings in SiteConfiguration:
errorCode = 404
errorHandler: Show content from page
To fix it:
Use "if ($response->getStatusCode() === 200)" instead of "if ($response->getStatusCode === 200)"
Actions