I’m getting below error…I’m not sure what this means as I have included helper file in the view file…
Missing Helper File
Error: The helper file track/views/helpers/request_handler.php can not be found or does not exist.
Error: Create the class below in file: track/views/helpers/request_handler.php
<?php
class RequestHandlerHelper extends AppHelper {
}
?>
If you can let me know what this means that would be appreciated!
Thank you.
Jae
Unless you customized how your CakePHP works, this should apply to most cases:
Checklist
/app/views/helpers/request_handler.phpMake sure the content of the
request_handler.phplooks like this:Make sure in the controller that renders the view has the helper array included
I think that’s all 🙂
Cheers