Kohana PHP custom error pages
May 27
If you want custom error pages in kohana php then you should enable hooks from configure file. and then create my_erros in the hook folders. <?php defined(‘SYSPATH’) or die(‘No direct script access.’); Event::clear(’system.404′, array(‘Kohana’, ’show_404′)); Event::add(’system.404′, ‘my_404′); function my_404()...
Read More