Cakephp missing helper file error -
i'm getting below error...i'm not sure means have included helper file in view file...
missing helper file
error: helper file track/views/helpers/request_handler.php can not found or not exist. error: create class below in file: track/views/helpers/request_handler.php <?php class requesthandlerhelper extends apphelper { } ?>
if can let me know means appreciated!
thank you. jae
unless customized how cakephp works, should apply cases:
checklist
- make sure helper file created in
/app/views/helpers/request_handler.php
make sure content of
request_handler.php
looks this:class requesthandlerhelper extends apphelper { var $name = 'requesthandler'; //bla.... }
make sure in controller renders view has helper array included
class fancycontroller extends appcontroller { var $name = 'fancy'; var $helpers = array('requesthandler'); //bla.... }
i think that's :)
cheers
Comments
Post a Comment