When I run my app on my locale machine it works fine, but when I run it on my sever using cpanel, everything works fine expect when I use js helper using jquery library the following error occurs
Error: jqueryEngineHelper could not be found.
Error: Create the class jqueryEngineHelper below in file:
app/View/Helper/jqueryEngineHelper.php
<?php
class jqueryEngineHelper extends AppHelper {
}
Nb: all the files exists.
It’s incorrectly looking for “jqueryEngineHelper” instead of “JqueryEngineHelper” which most likely means you didn’t use correct casing when specifying the helper in controller. Make sure you have
public $helpers = array('Js' => array('Jquery'));with capital “J” for “Jquery” and not “jquery”