Base for a static organization website

error500.ctp 422B

12345678910111213141516
  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 echo __d('cake', 'An Internal Error Has Occurred.'); ?>
  12. </p>
  13. <?php
  14. if (Configure::read('debug') > 0):
  15. echo $this->element('exception_stack_trace');
  16. endif;