This package provides multiple error pages for your Neos CMS site. You can add an error page for each subfolder; this package shows the nearest error page from the entry point., (*2)
Most of the time you have to make small adjustments to a package (e.g., the
configuration in Settings.yaml
). Because of that, it is important to add the
corresponding package to the composer from your theme package. Mostly this is the
site package located under Packages/Sites/
. To install it correctly go to your
theme package (e.g.Packages/Sites/Foo.Bar
) and run following command:, (*3)
composer require breadlesscode/neos-error-pages --no-update
The --no-update
command prevent the automatic update of the dependencies.
After the package was added to your theme composer.json
, go back to the root
of the Neos installation and run composer update
. Your desired package is now
installed correctly., (*4)
Breadlesscode.ErrorPages:Page
The node type Breadlesscode.ErrorPages:Page
does inherit from Neos.Neos:Document
.
There are no child nodes defined, so if you want to add content elements to your
error page, you have to add a ContentCollection to the node type., (*5)
'Breadlesscode.ErrorPages:Page': childNodes: main: type: 'Neos.Neos:ContentCollection'
To overwrite the document with your custom document you can do it like this:, (*6)
prototype(Breadlesscode.ErrorPages:Page) > prototype(Breadlesscode.ErrorPages:Page) < prototype(Vendor.Foo:Page.Document)
errorPages
is the fusion path which gets rendered if an error page gets shown.
Make sure it has the same look as when you go directly to the page., (*7)
The MIT License (MIT). Please see License File for more information., (*8)