TYPO3: Display custom 403/404/500 pages.
This version of the custom_error_page can only be used by >= TYPO3 8 LTS instances.
There are up to four steps to take:
Set up the YAML with all your domains for each page root tree and their pids to their specific 403/404/503 page. An example
file is in the folder “Examples” of this extension. The default file destination is “typo3conf/custom_error_conf.yml”.
Change the value of [FE][pageNotFound_handling] to “USER_FUNCTION:Bitmotion\CustomErrorPage\Utility\CustomErrorPageUtility->showCustom404Page” (without “”)
There is a configuration example in Resources/Private/Examples
.
There are two configuration options.
basic.path
(string): Path to the YAML file containing the configuration (see: below).basic.force404
(bool): If set, the configured 404 page will shown on 403 errors.Full example:
configuration: &default
name: www.domain.tld
pages:
403: 89
404: 12
503: 29
language-pattern:
default: true
en: 0
de: 1
fr: 2
additional-tlds:
- tld: .foo
- tld: .bar
- tld: .foo.bar
https: true
forward-reason: true
404: &404
- domain:
<<: *default
403: &403
<<: *404
503: &503
<<: *404
Contains the configuration array for handling 403, 404 or 503 errors. All keys contain an array of domains which does have the following configuration possibilities:
name
(string): The full name of the domainhttps
(bool): True if SSL is usedpages
(array): Contains configuration for pagesadditional-tlds
(array): Contains further TLD for configured domainlanguage-pattern
(array): Contains configuration for different languagesforward-reason
(bool): True if the reason must be forwarded to the error pageThe pages array does have to options:
403
(int): The ID of the page which should be shown when an 403 error occurs404
(int): The ID of the page which should be shown when an 404 error occurs503
(int): The ID of the page which should be shown when an 503 error occursThis array contains configuration for further top-level-domains. Each domain will be prepended to the configured name. In our examples this would be www.domain.tld.foo, www.domain.tld.bar and www.domain.tld.foo.bar.
tld
(string): Additional domain suffixAlso possible:
configuration: &default
name: www.domain
[...]
additional-tlds:
- tld: .com
- tld: .de
- tld: .fr
Additional configuration for multi language sites. This array contains an mapping of the ISO-code and the corresponding sys_language_uid.
In our example we do have three languages configured: en, de and fr. The domain should be available under www.domain.tld/en/, www.domain.tld/de/ and www.domain.tld/fr/.
If there is a sys_language_uid which is not configured in one of the given patterns (for example ‘es’), you will get an exception. Prevent that by using the default
key and set the value to true
.
ISO-Code
(int): Generic key and value (see above)default
(bool): see aboveThe plugin let you define custom error message depending of the 404 error reason.
In fact, error messages are content elements so you will be able to reuse them.
Currently there are two types of 404 error:
First, create all the content elements you want to display on your 404 page in a storage folder.
Then add the “Error message handling” plugin on your 404 page and add the content elements to the appropriate section.
That’s all! ;)