I am trying to include a .js file I created by using this:
echo $this->Html->script('vote'); My file is in /js/vote.js
I load the website and I go to the sourcecode, I click on the .js script file to see what it is loading and what I find out is that that the is an error loading vote.js
When I try to access directly from the URL using:
http://localhost:8888/mysite/js/vote.js
I find this:
Error: JsController could not be found. Error: Create the class JsController below in file: app/Controller/JsController.php <?php class JsController extends AppController { } Then I created what it says, I get another error:
Missing Method in JsController Error: The action vote.js is not defined in controller JsController Error: Create JsController::vote.js() in file: app/Controller/JsController.php. <?php class JsController extends AppController { public function vote.js() { } } What's the problem? Why is it so complicate to load a .JS file?
I am just trying to make a button to vote on articles and I am driven crazy...