Site Error Handling¶
The Site Error Handling options explained in depth.

Error handling in Site Configuration
errorPhpClassFQCN¶
- Datatype
- string
- Description
- This MUST be set to the class name of the PageErrorHandler of this
extension:
AawTeam\Pagenotfoundhandling\ErrorHandler\PageErrorHandler
(or\AawTeam\Pagenotfoundhandling\ErrorHandler\PageErrorHandler::class
in PHP code).
errorPage¶
- Datatype
- string
- Description
The URI to the page, that sould be fetched and displayed as error page.
Important
Note that the resulting URI must be accessible to the webserver, which is hosting the TYPO3 website. Make sure that the webserver internally knows about the DNS name and the
errorPage
is accessible.In case of a problem you might want to use
debugErrorPageRequestException
.- Example
t3://page?uid=123
additionalGetParams¶
- Datatype
- string [optional]
- Description
Additional query parameters for the
GET
request, that fetches the error page (defined inerrorPage
).The current URL (that lead to the error handler being invoked) is available, through
###CURRENT_URL###
.Forbidden parameter names are (case insensitive):
id
,chash
,l
,mp
. They will be quietly ignored.- Example
&tx_myext[key]=value&errorUrl=###CURRENT_URL###