Skip to content

Latest commit

 

History

History
74 lines (50 loc) · 1.36 KB

README.md

File metadata and controls

74 lines (50 loc) · 1.36 KB

CakePHP Apache error theme plugin

Make error pages Apache web server style.

Not Found

Installation

You can install using composer.

composer require tenkoma/cakephp-apache-error-theme

Enable Plugin

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');

Enable theme

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,

Configure

// config/bootstrap.php
Configure::write('CakeApacheErrorTheme', [
    'signature' => 'cake',
    'email' => '[email protected]',
]);
  • signature
    • apache (default)
    • cake show CakePHP and version as signature.
  • email (default=webmaster@localhost) E-mail address to be displayed at 5xx error

Example

404 Not Found

Not Found

5xx Internal Error

Internal Error