Base for a static organization website

error400.ctp 484B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * @link http://cakephp.org CakePHP(tm) Project
  4. * @package app.View.Errors
  5. * @since CakePHP(tm) v 0.10.0.1076
  6. */
  7. ?>
  8. <h2><?php echo $message; ?></h2>
  9. <p class="error">
  10. <strong><?php echo __d('cake', 'Error'); ?>: </strong>
  11. <?php printf(
  12. __d('cake', 'The requested address %s was not found on this server.'),
  13. "<strong>'{$url}'</strong>"
  14. ); ?>
  15. </p>
  16. <?php
  17. if (Configure::read('debug') > 0):
  18. echo $this->element('exception_stack_trace');
  19. endif;