Make error pages Apache web server style.
You can install using composer.
composer require tenkoma/cakephp-apache-error-theme
You can load the plugin using the shell command:
bin/cake plugin load CakeApacheErrorTheme
Or you can manually add the loading statement in the config/bootstrap.php file of your application:
// config/bootstrap.php
Plugin::load('CakeApacheErrorTheme');set theme in the ErrorController::beforeRender().
// src/Controller/ErrorController.php
public function beforeRender(Event $event)
{
parent::beforeRender($event);
$this->viewBuilder()->theme('CakeApacheErrorTheme');
}and debug = false in the config/app.php
// config/app.php
'debug' => false,// config/bootstrap.php
Configure::write('CakeApacheErrorTheme', [
'signature' => 'cake',
'email' => '[email protected]',
]);signatureapache(default)cakeshow CakePHP and version as signature.
email(default=webmaster@localhost) E-mail address to be displayed at 5xx error


