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

  1. make sure helper file created in /app/views/helpers/request_handler.php
  2. make sure content of request_handler.php looks this:

    class requesthandlerhelper extends apphelper {     var $name = 'requesthandler';      //bla.... } 
  3. make sure in controller renders view has helper array included

    class fancycontroller extends appcontroller {     var $name = 'fancy';     var $helpers = array('requesthandler');      //bla.... } 
  4. i think that's :)

cheers


Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -